You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2005/04/19 21:38:00 UTC

svn commit: r161954 - in incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core: NodeId.java state/NodeReferencesId.java

Author: jukka
Date: Tue Apr 19 12:37:59 2005
New Revision: 161954

URL: http://svn.apache.org/viewcvs?view=rev&rev=161954
Log:
JCR-97: Improved Checkstyle conformance by making the NodeId.uuid property private and removing the unnecessary (duplicates existing behaviour) NodeReferencesId.toString() method.

Modified:
    incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/NodeId.java
    incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/state/NodeReferencesId.java

Modified: incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/NodeId.java
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/NodeId.java?view=diff&r1=161953&r2=161954
==============================================================================
--- incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/NodeId.java (original)
+++ incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/NodeId.java Tue Apr 19 12:37:59 2005
@@ -25,7 +25,7 @@
     static final long serialVersionUID = 7026219091360041109L;
 
     /** UUID of the identified node */
-    protected final String uuid;
+    private final String uuid;
 
     /**
      * Creates a node identifier instance for the identified node.

Modified: incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/state/NodeReferencesId.java
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/state/NodeReferencesId.java?view=diff&r1=161953&r2=161954
==============================================================================
--- incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/state/NodeReferencesId.java (original)
+++ incubator/jackrabbit/trunk/src/java/org/apache/jackrabbit/core/state/NodeReferencesId.java Tue Apr 19 12:37:59 2005
@@ -66,7 +66,4 @@
         return false;
     }
 
-    public String toString() {
-        return uuid;
-    }
 }