Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/guava/src/com/google/common/reflect/ClassPath.java

          JarFile jarFile;
          try {
            jarFile = new JarFile(file);
          } catch (IOException e) {
            // Not a jar file
            return;
          }
          try {
            for (File path : getClassPathFromManifest(file, jarFile.getManifest())) {
              // We only scan each file once independent of the classloader that file might be
              // associated with.
              if (scannedUris.add(path.getCanonicalFile())) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 24.9K bytes
    - Viewed (1)
Back to top