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

Class ContentCheck

templates/panda/PolicyPanda.java:601–615  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

599 }
600
601 record ContentCheck(String name, String description, Kind kind, boolean ok, GHContent content)
602 implements Information {
603 public String summary() {
604 // formatter:off
605 return "- %s %s - %s%s".formatted(
606 getMarker(kind, ok), name, description, urlText(content));
607 // formatter:on
608 }
609
610 public String markdownSummary() {
611 return "- [%s] %s %s - %s%s"
612 .formatted((ok ? "x" : " "),
613 getMarker(kind, ok), name, description, urlText(content));
614 }
615 }
616
617 record FileCheck(String name, Kind kind, GHContent content)
618 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…