mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-06 08:44:30 +02:00
refactor: use proper enum (0 on both) for setMethod() (#3297)
This commit is contained in:
parent
b6e283ee62
commit
06c5f462e0
@ -77,7 +77,7 @@ public class Framework {
|
|||||||
crc.update(data);
|
crc.update(data);
|
||||||
entry = new ZipEntry("resources.arsc");
|
entry = new ZipEntry("resources.arsc");
|
||||||
entry.setSize(data.length);
|
entry.setSize(data.length);
|
||||||
entry.setMethod(ZipOutputStream.STORED);
|
entry.setMethod(ZipEntry.STORED);
|
||||||
entry.setCrc(crc.getValue());
|
entry.setCrc(crc.getValue());
|
||||||
out.putNextEntry(entry);
|
out.putNextEntry(entry);
|
||||||
out.write(data);
|
out.write(data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user