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 624d3c8 commit 97d258dCopy full SHA for 97d258d
plugins/src/main/java/com/google/firebase/gradle/plugins/SemVerTask.kt
@@ -40,13 +40,11 @@ abstract class SemVerTask : DefaultTask() {
40
val previous = ModuleVersion.fromStringOrNull(previousVersionString.get()) ?: return
41
val current = ModuleVersion.fromStringOrNull(currentVersionString.get()) ?: return
42
43
- return // If these variables don't exist, no reason to check API
44
- }
45
val bump = when {
46
previous.major != current.major -> VersionDelta.MAJOR
47
previous.minor != current.minor -> VersionDelta.MINOR
48
else -> VersionDelta.PATCH
49
+ }
50
val stream = ByteArrayOutputStream()
51
project.runMetalavaWithArgs(
52
listOf(
0 commit comments