MCPcopy Create free account
hub / github.com/commonhaus/foundation / Check

Class Check

templates/panda/PolicyPanda.java:554–569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

552 }
553
554 record Check(boolean check, Kind kind, String ok, String error) implements Information {
555 public String summary() {
556 // formatter:off
557 return "- %s %s".formatted(
558 getMarker(kind, check),
559 check ? ok : error);
560 // formatter:on
561 }
562
563 public String markdownSummary() {
564 return "- [%s] %s %s".formatted(
565 (check ? "x" : " "),
566 getMarker(kind, check),
567 check ? ok : error);
568 }
569 }
570
571 record CodeownersCheck(CodeOwnerError[] errors, GHContent content)
572 implements Information {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…