Skip to content

Commit 9b1972b

Browse files
authored
Compatibility with Javassist 3.18.1 (#389)
1 parent fe46fe8 commit 9b1972b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/java/org/dozer/util/DefaultProxyResolver.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public boolean isProxy(Class<?> clazz) {
3232
String className = clazz.getName();
3333
return className.contains(DozerConstants.CGLIB_ID)
3434
|| className.startsWith(DozerConstants.JAVASSIST_PACKAGE)
35-
|| className.contains(DozerConstants.JAVASSIST_SYMBOL);
35+
|| className.contains(DozerConstants.JAVASSIST_SYMBOL)
36+
|| className.contains(DozerConstants.JAVASSIST_SYMBOL_2);
3637
}
3738

3839
@Override

0 commit comments

Comments
 (0)