решение проблемы совместимости с java 1.8._4xx
This commit is contained in:
2025-04-21 15:27:20 +03:00
parent e8c748eb7e
commit b37e20e4a4
71 changed files with 361 additions and 154 deletions

View File

@@ -11,11 +11,11 @@ public class RendererDiff extends RendererCell<Integer> {
return (Integer) value;
}
public void Display() {
if (value != null){
Font font_ = MainModule_.instance.getUI().getTheme().Fonts.get(
value>0? VisualiserFonts.BadState: VisualiserFonts.TreePlain
if (value != null) {
Font font_ = MainModule_.instance.getUI().getTheme().Fonts.get(
value > 0 ? VisualiserFonts.BadState : VisualiserFonts.TreePlain
);
setFont(font_ );
setFont(font_);
setText(String.valueOf(value));
}
}