mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-06-12 05:07:45 +02:00
Finally, official Java 8 support
This commit is contained in:
@ -997,7 +997,7 @@ public class ZipUtils {
|
||||
return manifest;
|
||||
}
|
||||
public Enumeration<JarEntry> entries() {
|
||||
Iterator<Entry<String, Pair<JarEntry, ByteArrayOutputStream> >> i = entrySet().iterator();
|
||||
Iterator<Map.Entry<String, Pair<JarEntry, ByteArrayOutputStream> >> i = entrySet().iterator();
|
||||
ArrayList<JarEntry> list = new ArrayList<>();
|
||||
while (i.hasNext())
|
||||
list.add(i.next().getValue().first);
|
||||
|
Reference in New Issue
Block a user