fix useless helpers of mType variable

This commit is contained in:
Connor Tumbleson 2012-11-03 18:33:41 -05:00
parent 58ec5e1892
commit 85a4901e1d

View File

@ -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;
} }
} }