()
| 53 | } |
| 54 | |
| 55 | func (tb *IssueMetadataState) HasMetadata() bool { |
| 56 | return len(tb.Reviewers) > 0 || |
| 57 | len(tb.Assignees) > 0 || |
| 58 | len(tb.Labels) > 0 || |
| 59 | len(tb.ProjectTitles) > 0 || |
| 60 | len(tb.Milestones) > 0 |
| 61 | } |
| 62 | |
| 63 | func FillFromJSON(io *iostreams.IOStreams, recoverFile string, state *IssueMetadataState) error { |
| 64 | var data []byte |
no outgoing calls
no test coverage detected