Skip to content

Commit 709f59c

Browse files
author
Vladimir Kotal
committed
avoid rawtype
1 parent f428da2 commit 709f59c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/test/java/org/opengrok/indexer/history/BazaarHistoryParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public void parseLogDirectory() throws Exception {
202202
HistoryEntry e1 = result.getHistoryEntries().get(0);
203203
assertEquals(revId1, e1.getRevision());
204204
assertEquals(author1, e1.getAuthor());
205-
assertEquals(new HashSet(Arrays.asList(files)), e1.getFiles());
205+
assertEquals(new HashSet<>(Arrays.asList(files)), e1.getFiles());
206206
}
207207

208208
}

0 commit comments

Comments
 (0)