whitespace
Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/f13364b0 Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/f13364b0 Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/f13364b0 Branch: refs/heads/master Commit: f13364b0251ec9739f9d8e0f3f996532c1ab02ad Parents: 8faba69 Author: Stefan Bodewig <bode...@apache.org> Authored: Thu Mar 29 16:10:16 2018 +0200 Committer: Stefan Bodewig <bode...@apache.org> Committed: Thu Mar 29 16:10:16 2018 +0200 ---------------------------------------------------------------------- .../compress/archivers/zip/ParallelScatterZipCreator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/f13364b0/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java b/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java index b8d4e2c..a381d0a 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ParallelScatterZipCreator.java @@ -241,11 +241,11 @@ public class ParallelScatterZipCreator { // Make sure we catch any exceptions from parallel phase try { - for (final Future<?> future : futures) { - future.get(); - } + for (final Future<?> future : futures) { + future.get(); + } } finally { - es.shutdown(); + es.shutdown(); } es.awaitTermination(1000 * 60L, TimeUnit.SECONDS); // == Infinity. We really *must* wait for this to complete