diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-03-31 02:19:22 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-03-31 02:19:22 +0200 |
commit | b8f6b25f87fe09badab11b3e9e4c55c96588573f (patch) | |
tree | e94354302ec20f608ca4eb869cc51db72a257cc9 | |
parent | 9e5024fc3eed88ffc6d1ded1f7e2044fc621efe6 (diff) | |
download | refcat-b8f6b25f87fe09badab11b3e9e4c55c96588573f.tar.gz refcat-b8f6b25f87fe09badab11b3e9e4c55c96588573f.zip |
drop obsolete code
-rw-r--r-- | skate/schema.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/skate/schema.go b/skate/schema.go index e09b7f9..b4d8242 100644 --- a/skate/schema.go +++ b/skate/schema.go @@ -246,18 +246,6 @@ func (cr *ClusterResult) OneNonRef() (*Release, error) { return nil, fmt.Errorf("no reference/release found") } -// Group is a cluster with explicit groups. The content is unparsed, e.g. it -// can contain raw json strings. -type Group struct { - Key string - A []string - B []string -} - -func (g *Group) String() string { - return fmt.Sprintf("<Group A/B %d/%d>", len(g.A), len(g.B)) -} - // MinimalCitations variant from archive.org/details/wikipedia_citations_2020-07-14. type MinimalCitations struct { IDList string `json:"ID_list"` |