Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8261237

remove isClassPathAttributePresent method

XMLWordPrintable

    • b09
    • generic
    • generic

      Currently in jdk/internal/vm/VMSupport.java , we create a JarFile without a related finally clause or try with resources. That should better be changed.
      See also the Sonar check result :

      https://sonarcloud.io/project/issues?id=shipilev_jdk&languages=java&open=AXcqM8zf8sPJZZzON5qG&resolved=false&severities=BLOCKER&types=BUG

          public static boolean isClassPathAttributePresent(String path) {
              try {
                  Manifest man = (new JarFile(path)).getManifest();
      Use try-with-resources or close this "JarFile" in a "finally" clause.Why is this an issue?

            mbaesken Matthias Baesken
            mbaesken Matthias Baesken
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: