Skip to content

Commit

Permalink
Fix typo in class made final check in semver (#6246)
Browse files Browse the repository at this point in the history
The error message for classes made final has "abstract" instead of
"final" on them.
  • Loading branch information
rlazo committed Sep 11, 2024
1 parent 994542e commit 10fa49c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ enum class DeltaType {
Delta(
after.name,
"",
String.format("Class %s made abstract.", after.name),
String.format("Class %s made final.", after.name),
CLASS_MADE_FINAL,
VersionDelta.MAJOR
)
Expand Down

0 comments on commit 10fa49c

Please sign in to comment.