Skip to content

Commit

Permalink
Compatibility with Javassist 3.18.1 (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
garethahealy authored May 25, 2017
1 parent fe46fe8 commit 9b1972b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/main/java/org/dozer/util/DefaultProxyResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public boolean isProxy(Class<?> clazz) {
String className = clazz.getName();
return className.contains(DozerConstants.CGLIB_ID)
|| className.startsWith(DozerConstants.JAVASSIST_PACKAGE)
|| className.contains(DozerConstants.JAVASSIST_SYMBOL);
|| className.contains(DozerConstants.JAVASSIST_SYMBOL)
|| className.contains(DozerConstants.JAVASSIST_SYMBOL_2);
}

@Override
Expand Down

0 comments on commit 9b1972b

Please sign in to comment.