allow for com.sun.proxy prefixed proxy names

This commit is contained in:
Andy Clement
2014-04-07 13:04:11 -07:00
parent 8db3167a7c
commit 1b96b3da84

View File

@@ -599,7 +599,7 @@ public class TypeRegistry {
}
}
}
if (slashedName.startsWith("$Proxy") || slashedName.indexOf("$$EnhancerBy") != -1
if (slashedName.indexOf("$Proxy") != -1 || slashedName.indexOf("$$EnhancerBy") != -1
|| slashedName.indexOf("$$FastClassBy") != -1) {
return true;
}