We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a586fed commit 2a62395Copy full SHA for 2a62395
opengrok-indexer/src/test/java/org/opengrok/indexer/configuration/RuntimeEnvironmentTest.java
@@ -870,7 +870,7 @@ public void isChattyStatusPage() {
870
protected Map<String, Long> createMap(Object[][] input) {
871
Map<String, Long> map = new TreeMap<>();
872
for (int i = 0; i < input.length; i++) {
873
- map.put((String) input[i][0], new Long((long) input[i][1]));
+ map.put((String) input[i][0], (Long) input[i][1]);
874
}
875
return map;
876
0 commit comments