Uses 1311K of libraries. Click here for Pure Java version (4937L/28K).
1 | svoid bcelFixZip2Zip(File inZip, File outZip |
2 | default appendBaseName(inZip, ".bcel-fixed")) { |
3 | Zip2Zip z2z = new(inZip, outZip); |
4 | z2z.copyFileContents = (name, in, out) -> { |
5 | if (endsWith(name, ".class")) { |
6 | print("FIXING " + name); |
7 | bcelRoundtrip(in, name, out); |
8 | } else |
9 | copyStream(in, out); |
10 | }; |
11 | z2z.run(); |
12 | } |
download show line numbers debug dex old transpilations
Travelled to 4 computer(s): bhatertpkbcr, ekrmjmnbrukm, mowyntqkapby, mqqgnosmbjvj
No comments. add comment
Snippet ID: | #1033499 |
Snippet name: | bcelFixZip2Zip |
Eternal ID of this version: | #1033499/4 |
Text MD5: | fcb66299bed42a1b308c860732cd97b8 |
Transpilation MD5: | ade29ac713e6e7d1bd1d1848beb77450 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2021-10-29 07:24:51 |
Source code size: | 350 bytes / 12 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 153 / 225 |
Version history: | 3 change(s) |
Referenced in: | [show references] |