NIFI-6758 fixing checkstyle issues

This commit is contained in:
Joe Witt 2019-10-10 15:04:16 -04:00
parent 7db6ba841f
commit a273ff10f9
No known key found for this signature in database
GPG Key ID: 9093BF854F811A1A
1 changed files with 4 additions and 4 deletions

View File

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