mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-07 10:35:52 +01:00
refactor: remove unused decodeManifest function (#3268)
This commit is contained in:
parent
fb6cd883c0
commit
e99ed1ccbb
@ -157,18 +157,6 @@ public class ResFileDecoder {
|
||||
}
|
||||
}
|
||||
|
||||
public void decodeManifest(Directory inDir, String inFileName,
|
||||
Directory outDir, String outFileName) throws AndrolibException {
|
||||
try (
|
||||
InputStream in = inDir.getFileInput(inFileName);
|
||||
OutputStream out = outDir.getFileOutput(outFileName)
|
||||
) {
|
||||
((XmlPullStreamDecoder) mDecoders.getDecoder("xml")).decodeManifest(in, out);
|
||||
} catch (DirectoryException | IOException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
private final static Logger LOGGER = Logger.getLogger(ResFileDecoder.class.getName());
|
||||
|
||||
private final static String[] RAW_IMAGE_EXTENSIONS = new String[] {
|
||||
|
Loading…
Reference in New Issue
Block a user