Skip to content

Commit

Permalink
fix: exclude org/xml/sax
Browse files Browse the repository at this point in the history
  • Loading branch information
algomaster99 committed Aug 1, 2023
1 parent f7f71cd commit 524fa9c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
public class Terminator {
private static Options options;

private static final List<String> INTERNAL_PACKAGES = List.of("java/", "javax/", "jdk/", "sun/", "com/sun/");
private static final List<String> INTERNAL_PACKAGES =
List.of("java/", "javax/", "jdk/", "sun/", "com/sun/", "org/xml/sax");

public static void premain(String agentArgs, Instrumentation inst) {
options = new Options(agentArgs);
Expand Down

0 comments on commit 524fa9c

Please sign in to comment.