We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be3e02 commit 8ff1930Copy full SHA for 8ff1930
utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtils.kt
@@ -51,7 +51,7 @@ fun SourceFolder.isForGeneratedSources(): Boolean {
51
val resourceProperties = jpsElement.getProperties(resourceRootTypes + testResourceRootTypes)
52
53
val markedGeneratedSources =
54
- properties?.isForGeneratedSources == true && resourceProperties?.isForGeneratedSources == true
+ properties?.isForGeneratedSources == true || resourceProperties?.isForGeneratedSources == true
55
val androidStudioGeneratedSources =
56
IntelliJApiHelper.isAndroidStudio() && this.file?.path?.contains("build/generated") == true
57
0 commit comments