Массивы в json

This commit is contained in:
2025-05-06 16:26:47 +03:00
parent b46f86bebb
commit 6e0956e3e5
9 changed files with 114 additions and 53 deletions

View File

@@ -168,7 +168,7 @@ public class SPFEditor extends BaseEditor implements SPFEditorInterface {
Pair<Long, Integer> p = file.gcov_info.line_info.get(lineNum);
Color color = never;
if (p.getKey() > 0) {
color = (p.getValue() >= Global.mainModule.getProject().sapforProperties.GCOVLimit) ?
color = (p.getValue() >= 0) ?
new Color(255, 255, (100 - p.getValue()), 90) : null;
}
if (color != null) {