This commit is contained in:
@@ -561,6 +561,9 @@ public class TypeRegistry {
|
||||
* @return true if the type should be considered reloadable
|
||||
*/
|
||||
private boolean couldBeReloadable(String slashedName) {
|
||||
if (slashedName==null) {
|
||||
return false;
|
||||
}
|
||||
if (slashedName.startsWith("java")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -409,7 +409,7 @@ public class SpringLoadedPreProcessor implements Constants {
|
||||
}
|
||||
|
||||
private static boolean needsClientSideRewriting(String slashedClassName) {
|
||||
if (slashedClassName.startsWith("org/springsource/loaded")) {
|
||||
if (slashedClassName!=null && slashedClassName.charAt(0)=='o' && slashedClassName.startsWith("org/springsource/loaded")) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user