aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkg/config/feed.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkg/config/feed.go b/pkg/config/feed.go
index 03494d3..4641cbc 100644
--- a/pkg/config/feed.go
+++ b/pkg/config/feed.go
@@ -1,10 +1,5 @@
package config
-import (
- "fmt"
- "strings"
-)
-
// One stored feed
type Feed struct {
Name string
@@ -15,24 +10,3 @@ type Feed struct {
// Convenience type for all feeds
type Feeds map[string]Feed
-
-func (feeds Feeds) String() string {
- var b strings.Builder
- app := func(a ...interface{}) {
- _, _ = fmt.Fprint(&b, a...)
- }
- app("Feeds [")
-
- first := true
- for k, v := range feeds {
- if !first {
- app(", ")
- }
- app(`"`, k, `"`, ": ")
- _, _ = fmt.Fprintf(&b, "%+v", v)
- first = false
- }
- app("]")
-
- return b.String()
-}
93a2f56ba801facf4daba711d363e&follow=1'>Enhance the splash window handling.René 'Necoro' Neumann2-2/+9 2009-10-05Some more stuff to ignoreRené 'Necoro' Neumann1-0/+3 2009-10-05Renamed the ignore fileRené 'Necoro' Neumann1-0/+0 2009-10-05Update NEWSRené 'Necoro' Neumann1-0/+1 2009-10-05Also allow 'unselect all' in the PkgListRené 'Necoro' Neumann1-1/+10 2009-10-05Now have it the sorted way in PkgListsRené 'Necoro' Neumann2-3/+9 2009-10-05Enhanced system.sort_package_list to also sort CPVsRené 'Necoro' Neumann5-27/+38 2009-10-05Added an PkgList window and rewrote UpdateWindow and WorldListWindow to use itRené 'Necoro' Neumann3-39/+63 2009-10-05Add uninstall button and rename to PkgListWindowRené 'Necoro' Neumann1-2/+17 2009-10-05First quick hack to have a world listRené 'Necoro' Neumann3-2/+24