Add groovy-stubs/test to list of directory names to ignore in model generator.

This commit is contained in:
Ed Minnix
2023-04-17 14:34:04 -04:00
parent d975ceb648
commit 027f08a0df

View File

@@ -29,7 +29,8 @@ private J::Method superImpl(J::Method m) {
private predicate isInTestFile(J::File file) {
file.getAbsolutePath().matches("%src/test/%") or
file.getAbsolutePath().matches("%/guava-tests/%") or
file.getAbsolutePath().matches("%/guava-testlib/%")
file.getAbsolutePath().matches("%/guava-testlib/%") or
file.getAbsolutePath().matches("%/groovy-stubs/test/%")
}
private predicate isJdkInternal(J::CompilationUnit cu) {