src/java.base/share/classes/java/util/jar/JarFile.java
changeset 52171 0da586f1ed05
parent 52159 42244a052fbb
child 52427 3c6aa484536c
equal deleted inserted replaced
52170:2990f1e1c325 52171:0da586f1ed05
  1023             }
  1023             }
  1024             hasCheckedSpecialAttributes = true;
  1024             hasCheckedSpecialAttributes = true;
  1025         }
  1025         }
  1026     }
  1026     }
  1027 
  1027 
  1028     private synchronized void ensureInitialization() {
  1028     synchronized void ensureInitialization() {
  1029         try {
  1029         try {
  1030             maybeInstantiateVerifier();
  1030             maybeInstantiateVerifier();
  1031         } catch (IOException e) {
  1031         } catch (IOException e) {
  1032             throw new RuntimeException(e);
  1032             throw new RuntimeException(e);
  1033         }
  1033         }