in tools/javac/ApiComparator.java [64:71]
private void check(boolean change, String note) {
if (change) {
if (diff == Diff.NONE) diff = Diff.MODIFIED;
if (note != null) {
this.note = this.note == null ? note : this.note + ", " + note;
}
}
}