Skip to content

Commit

Permalink
@trivial Minor Javadoc fixes.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/trunk@1797764 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
trekawek committed Jun 6, 2017
1 parent 2695795 commit 3e10e41
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3e10e41

Please sign in to comment.