in sarif/src/main/java/com/jetbrains/qodana/sarif/model/ArtifactContent.java [117:142]
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(ArtifactContent.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("text");
sb.append('=');
sb.append(((this.text == null) ? "<null>" : this.text));
sb.append(',');
sb.append("binary");
sb.append('=');
sb.append(((this.binary == null) ? "<null>" : this.binary));
sb.append(',');
sb.append("rendered");
sb.append('=');
sb.append(((this.rendered == null) ? "<null>" : this.rendered));
sb.append(',');
sb.append("properties");
sb.append('=');
sb.append(((this.properties == null) ? "<null>" : this.properties));
sb.append(',');
if (sb.charAt((sb.length() - 1)) == ',') {
sb.setCharAt((sb.length() - 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}