You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by st...@apache.org on 2007/02/01 16:46:05 UTC

svn commit: r502247 - in /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype: BitsetENTCacheImpl.java EffectiveNodeTypeCache.java

Author: stefan
Date: Thu Feb  1 07:46:04 2007
New Revision: 502247

URL: http://svn.apache.org/viewvc?view=rev&rev=502247
Log:
corrected minor typos

Modified:
    jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/BitsetENTCacheImpl.java
    jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/EffectiveNodeTypeCache.java

Modified: jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/BitsetENTCacheImpl.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/BitsetENTCacheImpl.java?view=diff&rev=502247&r1=502246&r2=502247
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/BitsetENTCacheImpl.java (original)
+++ jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/BitsetENTCacheImpl.java Thu Feb  1 07:46:04 2007
@@ -28,7 +28,7 @@
 
 /**
  * Implements an effective node type cache that uses a bit set for storing the
- * information about participating nodetypes in a set.
+ * information about participating node types in a set.
  */
 public class BitsetENTCacheImpl implements EffectiveNodeTypeCache {
 
@@ -58,10 +58,10 @@
     private final HashMap aggregates;
 
     /**
-     * An lookup table for bit numbers for a given name.
+     * A lookup table for bit numbers for a given name.
      *
-     * Note: further performance improvements could be made, if this index would
-     * be stored in the nodetype registry since only registered nodetype names
+     * Note: further performance improvements could be made if this index would
+     * be stored in the node type registry since only registered node type names
      * are allowed in the keys.
      */
     private final ConcurrentReaderHashMap nameIndex = new ConcurrentReaderHashMap();
@@ -244,7 +244,7 @@
     private class BitsetKey implements Key {
 
         /**
-         * The names of the nodetypes that form this key.
+         * The names of the node types that form this key.
          */
         private final QName[] names;
 
@@ -260,7 +260,7 @@
 
         /**
          * Creates a ew bitset key.
-         * @param names the nodetype names
+         * @param names the node type names
          * @param maxBit the approximative number of the geatest bit
          */
         public BitsetKey(QName[] names, int maxBit) {

Modified: jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/EffectiveNodeTypeCache.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/EffectiveNodeTypeCache.java?view=diff&rev=502247&r1=502246&r2=502247
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/EffectiveNodeTypeCache.java (original)
+++ jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/nodetype/EffectiveNodeTypeCache.java Thu Feb  1 07:46:04 2007
@@ -27,7 +27,7 @@
 
     /**
      * Puts an effective node type to the cache. The key is internally generated
-     * from the set of merged nodetypes.
+     * from the set of merged node types.
      * @param ent the effective node type to put to the cache
      */
     void put(EffectiveNodeType ent);