mirror of
https://github.com/revanced/Apktool.git
synced 2025-02-01 14:47:56 +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() {
|
public ResType getType() {
|
||||||
return getmType();
|
return mType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addResource(ResResource res)
|
public void addResource(ResResource res)
|
||||||
@ -120,10 +120,6 @@ public class ResResSpec {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return mId.toString() + " " + getmType().toString() + "/" + mName;
|
return mId.toString() + " " + mType.toString() + "/" + mName;
|
||||||
}
|
|
||||||
|
|
||||||
public ResType getmType() {
|
|
||||||
return mType;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user