Skip to content

Commit

Permalink
refactor: use proper enum (0 on both) for setMethod() (#3297)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches authored Aug 27, 2023
1 parent b6e283e commit 06c5f46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void installFramework(File frameFile, String tag) throws AndrolibExceptio
crc.update(data);
entry = new ZipEntry("resources.arsc");
entry.setSize(data.length);
entry.setMethod(ZipOutputStream.STORED);
entry.setMethod(ZipEntry.STORED);
entry.setCrc(crc.getValue());
out.putNextEntry(entry);
out.write(data);
Expand Down

0 comments on commit 06c5f46

Please sign in to comment.