Blame SOURCES/sun-reflect-filter-jdk11.patch

4bf7c0
--- log4j-1_2_17/tests/src/java/org/apache/log4j/util/SunReflectFilter.java~	2012-05-26 12:00:25.000000000 +0200
4bf7c0
+++ log4j-1_2_17/tests/src/java/org/apache/log4j/util/SunReflectFilter.java	2019-11-05 10:04:05.622551632 +0100
4bf7c0
@@ -37,6 +37,12 @@
4bf7c0
     if (in.indexOf("at java.lang.reflect.") >= 0) {
4bf7c0
       return null;
4bf7c0
     }
4bf7c0
+    if (in.indexOf("at java.base/jdk.internal.reflect.") >= 0) {
4bf7c0
+      return null;
4bf7c0
+    }
4bf7c0
+    if (in.indexOf("at java.base/java.lang.reflect.") >= 0) {
4bf7c0
+      return null;
4bf7c0
+    }
4bf7c0
     if (in.indexOf("Compiled Code") >= 0) {
4bf7c0
         if(in.indexOf("junit.framework.TestSuite") >= 0) {
4bf7c0
             return util.substitute("s/Compiled Code/TestSuite.java:XXX/", in);