You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2019/10/10 19:04:29 UTC

[nifi] branch master updated: NIFI-6758 fixing checkstyle issues

This is an automated email from the ASF dual-hosted git repository.

joewitt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/master by this push:
     new a273ff1  NIFI-6758 fixing checkstyle issues
a273ff1 is described below

commit a273ff10f98b77e108aebf34dfbe847f473132ae
Author: Joe Witt <jo...@apache.org>
AuthorDate: Thu Oct 10 15:04:16 2019 -0400

    NIFI-6758 fixing checkstyle issues
---
 .../src/main/java/org/apache/nifi/nar/NarUnpacker.java            | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-nar-utils/src/main/java/org/apache/nifi/nar/NarUnpacker.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-nar-utils/src/main/java/org/apache/nifi/nar/NarUnpacker.java
index 13d6f9d..bb87ec3 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-nar-utils/src/main/java/org/apache/nifi/nar/NarUnpacker.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-nar-utils/src/main/java/org/apache/nifi/nar/NarUnpacker.java
@@ -201,9 +201,9 @@ public final class NarUnpacker {
     }
 
     /**
-     * Creates a map containing the nar directory mapped to it's bundle-coordinate. 
-     * @param extensionsWorkingDir
-     * @return
+     * Creates a map containing the nar directory mapped to it's bundle-coordinate.
+     * @param extensionsWorkingDir where to find extensions
+     * @return map of coordinates for bundles
      */
     private static Map<File, BundleCoordinate> createUnpackedNarBundleCoordinateMap(File extensionsWorkingDir) {
         Map<File, BundleCoordinate> result = new HashMap<>();
@@ -216,7 +216,7 @@ public final class NarUnpacker {
                 result.put(unpackedDir, bundleCoordinate);
             } catch (IOException e) {
                 logger.error(format("Unable to parse NAR information from unpacked nar directory [%s].", unpackedDir.getAbsoluteFile()), e);
-            } 
+            }
         }
         return result;
     }