| 
61 | 61 | 
 
  | 
62 | 62 | @InterfaceAudience.Private  | 
63 | 63 | @InterfaceStability.Unstable  | 
64 |  | -abstract class InodeTree<T> {  | 
 | 64 | +public abstract class InodeTree<T> {  | 
65 | 65 |   private static final Logger LOGGER =  | 
66 | 66 |       LoggerFactory.getLogger(InodeTree.class.getName());  | 
67 | 67 | 
 
  | 
@@ -458,11 +458,11 @@ private boolean hasFallbackLink() {  | 
458 | 458 |    * there will be root to root mapping. So, root does not represent as  | 
459 | 459 |    * internalDir.  | 
460 | 460 |    */  | 
461 |  | -  protected boolean isRootInternalDir() {  | 
 | 461 | +  public boolean isRootInternalDir() {  | 
462 | 462 |     return root.isInternalDir();  | 
463 | 463 |   }  | 
464 | 464 | 
 
  | 
465 |  | -  protected INodeLink<T> getRootFallbackLink() {  | 
 | 465 | +  public INodeLink<T> getRootFallbackLink() {  | 
466 | 466 |     Preconditions.checkState(root.isInternalDir());  | 
467 | 467 |     return rootFallbackLink;  | 
468 | 468 |   }  | 
@@ -743,7 +743,7 @@ private LinkEntry buildLinkRegexEntry(  | 
743 | 743 |    * If the input pathname leads to an internal mount-table entry then  | 
744 | 744 |    * the target file system is one that represents the internal inode.  | 
745 | 745 |    */  | 
746 |  | -  static class ResolveResult<T> {  | 
 | 746 | +  public static class ResolveResult<T> {  | 
747 | 747 |     final ResultKind kind;  | 
748 | 748 |     final T targetFileSystem;  | 
749 | 749 |     final String resolvedPath;  | 
@@ -778,7 +778,7 @@ boolean isLastInternalDirLink() {  | 
778 | 778 |    * @return ResolveResult which allows further resolution of the remaining path  | 
779 | 779 |    * @throws IOException  | 
780 | 780 |    */  | 
781 |  | -  ResolveResult<T> resolve(final String p, final boolean resolveLastComponent)  | 
 | 781 | +  public ResolveResult<T> resolve(final String p, final boolean resolveLastComponent)  | 
782 | 782 |       throws IOException {  | 
783 | 783 |     ResolveResult<T> resolveResult = null;  | 
784 | 784 |     String[] path = breakIntoPathComponents(p);  | 
@@ -958,7 +958,7 @@ public List<MountPoint<T>> getMountPoints() {  | 
958 | 958 |    * @return home dir value from mount table; null if no config value  | 
959 | 959 |    * was found.  | 
960 | 960 |    */  | 
961 |  | -  String getHomeDirPrefixValue() {  | 
 | 961 | +  public String getHomeDirPrefixValue() {  | 
962 | 962 |     return homedirPrefix;  | 
963 | 963 |   }  | 
964 | 964 | }  | 
0 commit comments