Skip to content

Commit 3ebce14

Browse files
committed
Remove unused code from convention plugin
1 parent 2e1bb9d commit 3ebce14

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

buildSrc/src/main/groovy/convention.shared.gradle

-10
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,3 @@ jar {
7676
}
7777
}
7878

79-
static def nextVersion(String version, int idx) {
80-
def parts = version.split(/\./)
81-
def part = parts[idx] as int
82-
part += 1
83-
parts[idx] = part as String
84-
for (int i = idx + 1; i < parts.length; i++) {
85-
parts[i] = "0"
86-
}
87-
return parts.join('.')
88-
}

0 commit comments

Comments
 (0)