Change how I compile methods in hopes of eliminating randomly wrong order

This commit is contained in:
libraryaddict
2020-02-26 00:22:25 +13:00
parent c5322072ae
commit e276773bf3
2 changed files with 2 additions and 7 deletions

View File

@@ -34,7 +34,6 @@ public class ClassGetter {
if (resource.getPath().toLowerCase().endsWith(".jar")) {
processJarfile(resource, pkgname, classes);
} else {
System.out.println("Not sure how you got here: " + resource.getPath());
for (File f : new File(resource.getPath() + "/" + pkgname.replace(".", "/")).listFiles()) {
if (!f.getName().endsWith(".class") || f.getName().contains("$")) {
continue;