Skip to content

Commit 29dc771

Browse files
committed
Fix CI failures
1 parent 4a15390 commit 29dc771

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

stability-gradle/src/main/kotlin/com/skydoves/compose/stability/gradle/StabilityCheckTask.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,8 @@ public abstract class StabilityCheckTask : DefaultTask() {
388388
inParams = false
389389
}
390390

391-
line.startsWith("public ") || line.startsWith("internal ") ||
391+
line.startsWith("public ") ||
392+
line.startsWith("internal ") ||
392393
line.startsWith("private ") -> {
393394
currentVisibility = line.substringBefore(" fun ").trim()
394395
val signature = line.substringAfter(" fun ").trim()

0 commit comments

Comments
 (0)