mixins: remove 2 dead methods

This commit is contained in:
therealunull
2020-10-29 13:17:09 -04:00
parent de82f4ade2
commit c626769ca4

View File

@@ -41,17 +41,6 @@ public abstract class RSAbstractArchiveMixin implements RSAbstractArchive
return overlayOutdated;
}
private InputStream getResourceAsStream(String resource) {
final InputStream in
= getContextClassLoader().getResourceAsStream(resource);
return in == null ? getClass().getResourceAsStream(resource) : in;
}
private ClassLoader getContextClassLoader() {
return Thread.currentThread().getContextClassLoader();
}
@SuppressWarnings("InfiniteRecursion")
@Copy("takeFile")
@Replace("takeFile")