Skip to content

Commit 10fa49c

Browse files
authored
Fix typo in class made final check in semver (#6246)
The error message for classes made final has "abstract" instead of "final" on them.
1 parent 994542e commit 10fa49c

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)