File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
java/ql/src/utils/modelgenerator/internal Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,20 @@ private predicate isJdkInternal(J::CompilationUnit cu) {
39
39
cu .getPackage ( ) .getName ( ) .matches ( "javax.swing%" ) or
40
40
cu .getPackage ( ) .getName ( ) .matches ( "java.awt%" ) or
41
41
cu .getPackage ( ) .getName ( ) .matches ( "sun%" ) or
42
- cu .getPackage ( ) .getName ( ) .matches ( "jdk. %" ) or
42
+ cu .getPackage ( ) .getName ( ) .matches ( "jdk%" ) or
43
43
cu .getPackage ( ) .getName ( ) .matches ( "java2d.%" ) or
44
44
cu .getPackage ( ) .getName ( ) .matches ( "build.tools.%" ) or
45
- cu .getPackage ( ) .getName ( ) .matches ( "propertiesparser. %" ) or
45
+ cu .getPackage ( ) .getName ( ) .matches ( "propertiesparser%" ) or
46
46
cu .getPackage ( ) .getName ( ) .matches ( "org.jcp.%" ) or
47
47
cu .getPackage ( ) .getName ( ) .matches ( "org.w3c.%" ) or
48
- cu .getPackage ( ) .getName ( ) .matches ( "org.ietf.jgss. %" ) or
48
+ cu .getPackage ( ) .getName ( ) .matches ( "org.ietf.jgss%" ) or
49
49
cu .getPackage ( ) .getName ( ) .matches ( "org.xml.sax%" ) or
50
+ cu .getPackage ( ) .getName ( ) .matches ( "com.oracle%" ) or
51
+ cu .getPackage ( ) .getName ( ) .matches ( "org.omg%" ) or
52
+ cu .getPackage ( ) .getName ( ) .matches ( "org.relaxng%" ) or
50
53
cu .getPackage ( ) .getName ( ) = "compileproperties" or
54
+ cu .getPackage ( ) .getName ( ) = "transparentruler" or
55
+ cu .getPackage ( ) .getName ( ) = "genstubs" or
51
56
cu .getPackage ( ) .getName ( ) = "netscape.javascript" or
52
57
cu .getPackage ( ) .getName ( ) = ""
53
58
}
You can’t perform that action at this time.
0 commit comments