Author: angela
Date: Wed Mar 13 15:22:59 2013
New Revision: 1455998
URL: http://svn.apache.org/r1455998
Log:
minor improvement (replace <code> by {@code}, replace single char string)
Modified:
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/kernel/KernelNodeState.java
Modified:
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/kernel/KernelNodeState.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/kernel/KernelNodeState.java?rev=1455998&r1=1455997&r2=1455998&view=diff
==============================================================================
---
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/kernel/KernelNodeState.java
(original)
+++
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/kernel/KernelNodeState.java
Wed Mar 13 15:22:59 2013
@@ -84,7 +84,7 @@ public final class KernelNodeState exten
});
/**
- * This <code>NULL</code> kernel node state is used as a value in the
+ * This {@code NULL} kernel node state is used as a value in the
* {@link #cache} to indicate that there is no node state at the given
* path and revision. This object is only used internally and never leaves
* this {@link KernelNodeState}.
@@ -436,7 +436,7 @@ public final class KernelNodeState exten
}
/**
- * Process the given JSON diff, which is the diff of of the
<code>base</code>
+ * Process the given JSON diff, which is the diff of of the {@code base}
* node state to this node state.
*
* @param jsonDiff the JSON diff.
@@ -505,7 +505,7 @@ public final class KernelNodeState exten
}
default:
throw new IllegalArgumentException("jsonDiff: illegal
token '"
- + t.getToken() + "' at pos: " + t.getLastPos() + "
" + jsonDiff);
+ + t.getToken() + "' at pos: " + t.getLastPos() + '
' + jsonDiff);
}
}
}