|
|
@ -106,6 +106,9 @@ public class UfClassHelper { |
|
|
|
try { |
|
|
|
String className = entryName.substring(0, entryName.length() - 6); |
|
|
|
className = className.replace("/", "."); |
|
|
|
if ( !className.startsWith(packageName) ) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
classes.add(Class.forName(className)); |
|
|
|
} catch (ClassNotFoundException e) { |
|
|
|
throw new RuntimeException(e); |
|
|
|