Skip to content

Commit ea4d093

Browse files
committed
Remove unused function
1 parent 5a383fc commit ea4d093

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,3 @@ dependencies {
9797
}
9898
}
9999
}
100-
101-
fun isNonStable(version: String): Boolean {
102-
val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) }
103-
val regex = "^[0-9,.v-]+(-r)?$".toRegex()
104-
val isGuava = version.endsWith("-jre")
105-
val isStable = stableKeyword || regex.matches(version) || isGuava
106-
return isStable.not()
107-
}

0 commit comments

Comments
 (0)