Skip to content

Commit e6b5ba7

Browse files
committed
Fix typo in class made final check in semver
The error message for classes made final has "abstract" instead of "final" on them.
1 parent 8ad9ef5 commit e6b5ba7

File tree

1 file changed

+1
-1
lines changed
  • buildSrc/src/main/java/com/google/firebase/gradle/plugins/semver

1 file changed

+1
-1
lines changed

buildSrc/src/main/java/com/google/firebase/gradle/plugins/semver/DeltaType.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ enum class DeltaType {
394394
Delta(
395395
after.name,
396396
"",
397-
String.format("Class %s made abstract.", after.name),
397+
String.format("Class %s made final.", after.name),
398398
CLASS_MADE_FINAL,
399399
VersionDelta.MAJOR
400400
)

0 commit comments

Comments
 (0)