Skip to content

Commit 1c14bc2

Browse files
committed
excluding asm too
1 parent fd70273 commit 1c14bc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

openjpa-kernel/src/main/java/org/apache/openjpa/enhance/PCClassFileTransformer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ private boolean isExcluded(final String className) {
143143
if (className.startsWith("org/apache/")) {
144144
final String sub = className.substring("org/apache/".length());
145145
if (sub.startsWith("openjpa/") ||
146-
sub.startsWith("commons/")) {
146+
sub.startsWith("commons/") ||
147+
sub.startsWith("xbean/")) {
147148
return true;
148149
}
149150
}

0 commit comments

Comments
 (0)