Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EmptyFileCollection (0.13 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

        }
    
        @Override
        public FileCollectionInternal fixed(String displayName, File... files) {
            if (files.length == 0) {
                return new EmptyFileCollection(displayName);
            }
            return new FixedFileCollection(displayName, taskDependencyFactory, patternSetFactory, ImmutableSet.copyOf(files));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top