Skip to content

Commit

Permalink
Fix Qulice warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kniazkov committed Aug 30, 2024
1 parent 3878c2a commit 4e3d151
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ void testColoredNodeVisualization(@TempDir final Path temp) {

/**
* Colored node for test purposes.
* @since 2.0.0
*/
private static final class ColoredNode extends NodeAndType {
@Override
Expand All @@ -206,16 +207,16 @@ public int getChildCount() {
}

@Override
public Node getChild(int index) {
public Node getChild(final int index) {
throw new IllegalStateException();
}

@Override
public Map<String, String> getProperties() {
return new MapUtils<String, String>()
.put("color", "red")
.put("bgcolor", "yellow")
.make();
.put("color", "red")
.put("bgcolor", "yellow")
.make();
}
}
}

0 comments on commit 4e3d151

Please sign in to comment.