Author: ggregory
Date: Fri Apr  7 17:57:48 2017
New Revision: 1790604

URL: http://svn.apache.org/viewvc?rev=1790604&view=rev
Log:
Let these private ivars be final.

Modified:
    
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/tree/xpath/ConfigurationNodeIteratorAttribute.java

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/tree/xpath/ConfigurationNodeIteratorAttribute.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/tree/xpath/ConfigurationNodeIteratorAttribute.java?rev=1790604&r1=1790603&r2=1790604&view=diff
==============================================================================
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/tree/xpath/ConfigurationNodeIteratorAttribute.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/tree/xpath/ConfigurationNodeIteratorAttribute.java
 Fri Apr  7 17:57:48 2017
@@ -38,10 +38,10 @@ class ConfigurationNodeIteratorAttribute
     private static final String WILDCARD = "*";
 
     /** Stores the parent node pointer. */
-    private ConfigurationNodePointer<T> parentPointer;
+    private final ConfigurationNodePointer<T> parentPointer;
 
     /** A list with the names of the managed attributes. */
-    private List<String> attributeNames;
+    private final List<String> attributeNames;
 
     /**
      * Creates a new instance of {@code ConfigurationNodeIteratorAttribute}.


Reply via email to