Merge branch '2.3.x' into 2.4.x
This commit is contained in:
@@ -643,7 +643,7 @@ class JarFileTests {
|
||||
@Test
|
||||
void iterator() {
|
||||
Iterator<JarEntry> iterator = this.jarFile.iterator();
|
||||
List<String> names = new ArrayList<String>();
|
||||
List<String> names = new ArrayList<>();
|
||||
while (iterator.hasNext()) {
|
||||
names.add(iterator.next().getName());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user