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 4a15390 commit 29dc771Copy full SHA for 29dc771
1 file changed
stability-gradle/src/main/kotlin/com/skydoves/compose/stability/gradle/StabilityCheckTask.kt
@@ -388,7 +388,8 @@ public abstract class StabilityCheckTask : DefaultTask() {
388
inParams = false
389
}
390
391
- line.startsWith("public ") || line.startsWith("internal ") ||
+ line.startsWith("public ") ||
392
+ line.startsWith("internal ") ||
393
line.startsWith("private ") -> {
394
currentVisibility = line.substringBefore(" fun ").trim()
395
val signature = line.substringAfter(" fun ").trim()
0 commit comments