mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 22:54:24 +02:00
refactor: use static inner classes for AbstractDirectory (#3348)
This commit is contained in:
parent
f63bbc0be2
commit
9c465321f1
@ -267,8 +267,7 @@ public abstract class AbstractDirectory implements Directory {
|
||||
protected abstract AbstractDirectory createDirLocal(String name) throws DirectoryException;
|
||||
protected abstract void removeFileLocal(String name);
|
||||
|
||||
|
||||
private class ParsedPath {
|
||||
private static class ParsedPath {
|
||||
public final String dir;
|
||||
public final String subpath;
|
||||
public ParsedPath(String dir, String subpath) {
|
||||
@ -277,7 +276,7 @@ public abstract class AbstractDirectory implements Directory {
|
||||
}
|
||||
}
|
||||
|
||||
private class SubPath {
|
||||
private static class SubPath {
|
||||
public final AbstractDirectory dir;
|
||||
public final String path;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user