You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+// Copyright 2000-2022 JetBrains s.r.o. and ForgeFlower contributors Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
1208
1208
+package org.jetbrains.java.decompiler.struct;
1209
1209
+
@@ -1221,7 +1221,9 @@ index 0000000000000000000000000000000000000000..56127f683eca1fe1d28624eada88bf57
1221
1221
+import java.io.InputStream;
1222
1222
+import java.util.ArrayList;
1223
1223
+import java.util.Enumeration;
1224
+
+import java.util.LinkedHashSet;
1224
1225
+import java.util.List;
1226
+
+import java.util.Set;
1225
1227
+import java.util.jar.Manifest;
1226
1228
+import java.util.zip.ZipEntry;
1227
1229
+import java.util.zip.ZipFile;
@@ -1258,14 +1260,15 @@ index 0000000000000000000000000000000000000000..56127f683eca1fe1d28624eada88bf57
1258
1260
+ @Override
1259
1261
+ public Entries getEntries() {
1260
1262
+ final List<Entry> classes = new ArrayList<>();
1261
-
+ final List<String> directories = new ArrayList<>();
1263
+
+ final Set<String> directories = new LinkedHashSet<>();
0 commit comments