refactor: remove unused methods/variables

This commit is contained in:
Connor Tumbleson 2020-09-13 08:44:40 -04:00
parent 65eeb2fb4a
commit 120c63df75
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
3 changed files with 0 additions and 13 deletions

View File

@ -69,12 +69,4 @@ public class MetaInfo {
public static MetaInfo load(InputStream is) {
return getYaml().loadAs(is, MetaInfo.class);
}
public static MetaInfo load(File file) throws IOException {
try (
InputStream fis = new FileInputStream(file)
) {
return load(fis);
}
}
}

View File

@ -30,7 +30,6 @@ import org.xmlpull.v1.XmlSerializer;
*/
public class ResArrayValue extends ResBagValue implements
ResValuesXmlSerializable {
private String mRawItems;
ResArrayValue(ResReferenceValue parent, Duo<Integer, ResScalarValue>[] items) {
super(parent);

View File

@ -29,10 +29,6 @@ public class ResFileValue extends ResIntBasedValue {
this.mPath = path;
}
public String getPath() {
return mPath;
}
public String getStrippedPath() throws AndrolibException {
if (mPath.startsWith("res/")) {
return mPath.substring(4);