Skip to content

Commit

Permalink
remove commented old code
Browse files Browse the repository at this point in the history
  • Loading branch information
sv99 committed Jul 3, 2023
1 parent 32710ff commit be758dd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions brut.apktool/apktool-cli/src/main/java/brut/apktool/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,6 @@ private static void cmdDecode(CommandLine cli, Config config) throws AndrolibExc
} catch (DirectoryException ex) {
System.err.println("Could not modify internal dex files. Please ensure you have permission.");
System.exit(1);
} finally {
try {
decoder.close();
} catch (IOException ignored) {}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public ApkDecoder(ExtFile apkFile) {

public ApkDecoder(Config config, ExtFile apkFile) {
mConfig = config;
//mAndRes = new AndrolibResources(config);
mResUnknownFiles = new ResUnknownFiles();
mApkFile = apkFile;
}
Expand Down Expand Up @@ -178,10 +177,6 @@ private boolean hasMultipleSources() throws AndrolibException {
}
}

public void close() throws IOException {
//mAndRes.close();
}

private void writeApkInfo(ApkInfo apkInfo, File outDir) throws AndrolibException {
try {
apkInfo.save(new File(outDir, "apktool.yml"));
Expand Down

0 comments on commit be758dd

Please sign in to comment.