mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
18.24.2007 4dc4aa0c15b318b761b92e2394d0fde58a3e8232
opends/src/quicksetup/org/opends/quicksetup/util/ZipExtractor.java
@@ -276,7 +276,15 @@
    if (application != null) {
      Message progressSummary =
              INFO_PROGRESS_EXTRACTING.get(Utils.getPath(destination));
      application.notifyListeners(ratioBeforeCompleted, progressSummary);
      if (application.isVerbose())
      {
        application.notifyListenersWithPoints(ratioBeforeCompleted,
            progressSummary);
      }
      else
      {
        application.notifyListenersRatioChange(ratioBeforeCompleted);
      }
    }
    LOG.log(Level.INFO, "extracting " + Utils.getPath(destination));
    if (Utils.insureParentsExist(destination))
@@ -313,7 +321,10 @@
      throw new IOException("Could not create parent path: " + destination);
    }
    if (application != null) {
      application.notifyListenersDone(ratioWhenCompleted);
      if (application.isVerbose())
      {
        application.notifyListenersDone(ratioWhenCompleted);
      }
    }
  }