Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeTrailingSeparator (0.31 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

            private final Node rootNode;
    
            PrefixFileSet(File rootDir) {
                this(toAbsolutePath(rootDir));
            }
    
            PrefixFileSet(String rootPath) {
                String path = removeTrailingSeparator(rootPath);
                this.rootNode = new Node(path);
            }
    
            PrefixFileSet(Node rootNode) {
                this.rootNode = rootNode;
            }
    
            @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top