Skip to content

Commit

Permalink
fix: Removed debug printouts (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmongard committed Feb 9, 2024
1 parent d5d3763 commit 9371334
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/kotlin/git/semver/plugin/semver/MutableSemVersion.kt
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ internal class MutableSemVersion(
}

private fun applyChangesNotGrouped() {
println("applyChangesNotGrouped")
if (bumpMajor > 0) {
updateMajor(bumpMajor)
}
Expand All @@ -192,7 +191,6 @@ internal class MutableSemVersion(
}

private fun applyChangesGrouped() {
println("applyChangesGrouped")
when {
bumpMajor > 0 -> {
updateMajor(1)
Expand Down

0 comments on commit 9371334

Please sign in to comment.