We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe46fe8 commit 9b1972bCopy full SHA for 9b1972b
core/src/main/java/org/dozer/util/DefaultProxyResolver.java
@@ -32,7 +32,8 @@ public boolean isProxy(Class<?> clazz) {
32
String className = clazz.getName();
33
return className.contains(DozerConstants.CGLIB_ID)
34
|| className.startsWith(DozerConstants.JAVASSIST_PACKAGE)
35
- || className.contains(DozerConstants.JAVASSIST_SYMBOL);
+ || className.contains(DozerConstants.JAVASSIST_SYMBOL)
36
+ || className.contains(DozerConstants.JAVASSIST_SYMBOL_2);
37
}
38
39
@Override
0 commit comments