Skip to content

Commit ed264d5

Browse files
committed
fix: PaperListResultItem no longer implements Stringer
1 parent 041e281 commit ed264d5

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: models/paper_list_result.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package models
22

3-
import "fmt"
4-
53
// PaperListResult is the result of PaperListResult() function.
64
type PaperListResult struct {
75
Count int64 `json:"count"`
@@ -10,8 +8,6 @@ type PaperListResult struct {
108
Results []PaperListResultItem `json:"results"`
119
}
1210

13-
var _ fmt.Stringer = (*PaperListResultItem)(nil)
14-
1511
type PaperListResultItem struct {
1612
ID string `json:"id"`
1713
ArxivID *string `json:"arxiv_id"`
@@ -26,4 +22,4 @@ type PaperListResultItem struct {
2622
ConferenceURLAbs *string `json:"conference_url_abs"`
2723
ConferenceURLPDF *string `json:"conference_url_pdf"`
2824
Proceeding *string `json:"proceeding"`
29-
}
25+
}

0 commit comments

Comments
 (0)