mirror of https://github.com/apache/nifi.git
NIFI-6758 fixing checkstyle issues
This commit is contained in:
parent
7db6ba841f
commit
a273ff10f9
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue