Skip to content

Commit

Permalink
Use faster JavaSourceSet.build() overload
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Aug 8, 2024
1 parent 7e86a02 commit f900a9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ private Stream<SourceFile> processTestSources(
}

private static JavaSourceSet sourceSet(String name, List<Path> dependencies, JavaTypeCache typeCache) {
return JavaSourceSet.build(name, dependencies, typeCache, false);
return JavaSourceSet.build(name, dependencies);
}

public @Nullable Xml.Document parseMaven(MavenProject mavenProject, List<Marker> projectProvenance, ExecutionContext ctx) {
Expand Down

0 comments on commit f900a9a

Please sign in to comment.