Skip to content

Commit

Permalink
payara#4281 Added another missing final keywords to edited code
Browse files Browse the repository at this point in the history
  • Loading branch information
sgflt authored and David Matejcek committed Apr 16, 2020
1 parent 5edef32 commit 9d6be3d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ private CharSequence superToString() {
sb.append("isValid:").append(getIsValid());

if (getIsValid()) {
Enumeration<String> attrNamesEnum = getAttributeNamesInternal();
final Enumeration<String> attrNamesEnum = getAttributeNamesInternal();
while(attrNamesEnum.hasMoreElements()) {
String nextAttrName = attrNamesEnum.nextElement();
Object nextAttrValue = getAttributeInternal(nextAttrName);
final String nextAttrName = attrNamesEnum.nextElement();
final Object nextAttrValue = getAttributeInternal(nextAttrName);
sb.append("\n");
sb.append("attrName = ").append(nextAttrName);
sb.append(" : attrValue = ").append(nextAttrValue);
Expand Down

0 comments on commit 9d6be3d

Please sign in to comment.