You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by to...@apache.org on 2017/06/06 09:53:27 UTC

svn commit: r1797764 - in /jackrabbit/oak/trunk: oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/ oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/

Author: tomekr
Date: Tue Jun  6 09:53:27 2017
New Revision: 1797764

URL: http://svn.apache.org/viewvc?rev=1797764&view=rev
Log:
@trivial Minor Javadoc fixes.

Modified:
    jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/Mount.java
    jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/MountInfoProvider.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/NodeCountEstimator.java

Modified: jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/Mount.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/Mount.java?rev=1797764&r1=1797763&r2=1797764&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/Mount.java (original)
+++ jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/Mount.java Tue Jun  6 09:53:27 2017
@@ -88,15 +88,15 @@ public interface Mount {
     /**
      * Checks if given path belongs to this <code>Mount</code>
      *
-     * <p>A path belongs to a Mount in two scenarios:
+     * <p>A path belongs to a Mount in two scenarios:</p>
      * <ol>
      *   <li>The path is below a fragment-supported path and the path contains a fragment name.</li>
      *   <li>The path of this mount is the most specific ancestor for the specified path.</li>
      * </ol>
      * 
-     * The fragment check has a higher priority, and the presence of a fragment name in the path
-     * always decides the mount this path belongs to.
-     * </p>
+     * <p>The fragment check has a higher priority, and the presence of a fragment name in the path
+     * always decides the mount this path belongs to.</p>
+     *
      * @param path path to check
      * @return true if path belong to this mount
      * 

Modified: jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/MountInfoProvider.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/MountInfoProvider.java?rev=1797764&r1=1797763&r2=1797764&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/MountInfoProvider.java (original)
+++ jackrabbit/oak/trunk/oak-core-spi/src/main/java/org/apache/jackrabbit/oak/spi/mount/MountInfoProvider.java Tue Jun  6 09:53:27 2017
@@ -86,7 +86,7 @@ public interface MountInfoProvider {
      * @param path the path under which mounts are to be foud
      * @return a collection of mounts, possibly empty
      * 
-     * @se {@link Mount#isDirectlyUnder(String)}
+     * @see Mount#isDirectlyUnder(String)
      */
     @Nonnull
     Collection<Mount> getMountsPlacedDirectlyUnder(String path);

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/NodeCountEstimator.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/NodeCountEstimator.java?rev=1797764&r1=1797763&r2=1797764&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/NodeCountEstimator.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/NodeCountEstimator.java Tue Jun  6 09:53:27 2017
@@ -26,7 +26,7 @@ public interface NodeCountEstimator {
 
     /**
      * Provides an estimate of the sub tree node count at given path
-     * @param path path under which count is requested
+     * @param basePath path under which count is requested
      * @return estimated count or -1 if unknown
      */
     long getEstimatedNodeCount(String basePath, Set<String> indexPaths);