Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fromJarURI (0.08 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactory.java

            }
            return new FileReferenceImpl(new File(path), path, false);
        }
    
        /**
         * Creates a reference to the given path. Returns null for null path
         */
        public FileReference fromJarURI(String jarURI) {
            if (jarURI== null) {
                return null;
            }
            //cut the pre and postfix of this url
            URI fileURI = null;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top