mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-18 10:29:26 +01:00
fix useless helpers of mType variable
This commit is contained in:
parent
58ec5e1892
commit
85a4901e1d
@ -102,7 +102,7 @@ public class ResResSpec {
|
||||
}
|
||||
|
||||
public ResType getType() {
|
||||
return getmType();
|
||||
return mType;
|
||||
}
|
||||
|
||||
public void addResource(ResResource res)
|
||||
@ -120,10 +120,6 @@ public class ResResSpec {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return mId.toString() + " " + getmType().toString() + "/" + mName;
|
||||
return mId.toString() + " " + mType.toString() + "/" + mName;
|
||||
}
|
||||
|
||||
public ResType getmType() {
|
||||
return mType;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user