()
| 617 | record FileCheck(String name, Kind kind, GHContent content) |
| 618 | implements Information { |
| 619 | public String summary() { |
| 620 | // formatter:off |
| 621 | return "- %s %s - %s%s".formatted( |
| 622 | getMarker(), name, ok() ? "File exists" : "File does not exist", urlText(content)); |
| 623 | // formatter:on |
| 624 | } |
| 625 | |
| 626 | public String markdownSummary() { |
| 627 | return "- [%s] %s %s - %s%s" |