Skip to content

Commit f3fc119

Browse files
committed
Use final
1 parent 7c0e7ab commit f3fc119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/lang3/text/ExtendedMessageFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ private void getQuotedString(final String pattern, final ParsePosition pos) {
305305
@Override
306306
public int hashCode() {
307307
final int prime = 31;
308-
int result = super.hashCode();
308+
final int result = super.hashCode();
309309
return prime * result + Objects.hash(registry, toPattern);
310310
}
311311

0 commit comments

Comments
 (0)