File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/sonarqube/gradle Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,14 +102,14 @@ void run() throws IOException {
102102 LOGGER .info ("Resolving properties for " + displayName + "." );
103103 }
104104
105- var compile = compileClasspath .getOrNull ();
106- var test = testCompileClasspath .getOrNull ();
105+ var mainClasspath = this . compileClasspath .getOrNull ();
106+ var testClasspath = testCompileClasspath .getOrNull ();
107107
108- List <String > compileClasspathFilenames = SonarUtils .exists (compile == null ? List .of () : compile )
108+ List <String > compileClasspathFilenames = SonarUtils .exists (mainClasspath == null ? List .of () : mainClasspath )
109109 .stream ()
110110 .map (File ::getAbsolutePath )
111111 .collect (Collectors .toList ());
112- List <String > testCompileClasspathFilenames = SonarUtils .exists (test == null ? List .of () : test )
112+ List <String > testCompileClasspathFilenames = SonarUtils .exists (testClasspath == null ? List .of () : testClasspath )
113113 .stream ()
114114 .map (File ::getAbsolutePath )
115115 .collect (Collectors .toList ());
You can’t perform that action at this time.
0 commit comments