Code formatting

This commit is contained in:
Guillaume Nodet
2021-10-20 06:55:33 +02:00
parent 4eda0d54cf
commit e89f81b88e
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,6 @@ public class SpecificFileNativeIT {
void version() throws IOException, InterruptedException {
TestClientOutput output = new TestClientOutput();
Path prj1 = parameters.getTestDir().resolve("project/prj1").toAbsolutePath();
Path prj2 = parameters.getTestDir().resolve("project/prj2").toAbsolutePath();

View File

@@ -193,7 +193,8 @@ public class MvndNativeLoader {
try (InputStream extractedLibIn = new FileInputStream(extractedLibFile)) {
String eq = contentsEquals(nativeIn, extractedLibIn);
if (eq != null) {
throw new RuntimeException(String.format("Failed to write a native library file at %s because %s", extractedLibFile, eq));
throw new RuntimeException(
String.format("Failed to write a native library file at %s because %s", extractedLibFile, eq));
}
}
}