Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for showGetAsPathDeprecationWarning (0.27 sec)

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

        public Iterator<File> iterator() {
            return getFiles().iterator();
        }
    
        @Override
        public String getAsPath() {
            showGetAsPathDeprecationWarning();
            return GUtil.asPath(this);
        }
    
        private void showGetAsPathDeprecationWarning() {
            List<String> filesAsPaths = this.getFiles().stream()
                .map(File::getPath)
                .filter(path -> path.contains(File.pathSeparator))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top