Skip to content

Commit

Permalink
add support for Permazen proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
kbakaras authored and chhsiao90 committed Jul 12, 2023
1 parent 830009e commit e1c148f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/org/modelmapper/internal/util/Types.java
Expand Up @@ -80,6 +80,8 @@ public static boolean isProxied(Class<?> type) {
return true;
if (type.getName().contains("$MockitoMock$"))
return true;
if (type.getName().contains("$$Permazen"))
return true;
if (Proxy.isProxyClass(type))
return true;
return isProxiedByJavassist(type);
Expand Down

0 comments on commit e1c148f

Please sign in to comment.