Skip to content

Commit faf5732

Browse files
committed
address feedback
1 parent 78c861c commit faf5732

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

settings.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ loadProperties(file("gradle/projects.main.properties")).forEach { name, director
5757
polarisProject(name as String, file(directory as String))
5858
}
5959

60-
val ideActive = System.getProperty("idea.active").toBoolean()
60+
val ideaActive = System.getProperty("idea.active").toBoolean()
6161

6262
// load the polaris spark plugin projects
6363
val polarisSparkDir = "plugins/spark"
@@ -78,10 +78,10 @@ for (sparkVersion in sparkVersions) {
7878
} else {
7979
noSourceChecksProjects.add(":$artifactId")
8080
}
81-
// skip all duplicated spark client projects in IDE to avoid problems
82-
// during Intelij dependency analysis and sync. For example:
83-
// "Multiple projects in this build have project directory".
84-
if (ideActive) {
81+
// Skip all duplicated spark client projects while using Intelij IDE.
82+
// This is to avoid problems during Intelij dependency analysis and sync,
83+
// like "Multiple projects in this build have project directory".
84+
if (ideaActive) {
8585
break
8686
}
8787
}

0 commit comments

Comments
 (0)