Skip to content

Commit

Permalink
Fix typo in class made final check in semver
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 10, 2024
1 parent 8ad9ef5 commit e6b5ba7
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 e6b5ba7

Please sign in to comment.