Remove null check
This commit is contained in:
parent
bed8421d89
commit
bd8b7af73a
@ -185,7 +185,7 @@ public class LoadLibrary {
|
||||
if (Files.notExists(tempFile)) {
|
||||
Files.copy(libInputStream, tempFile);
|
||||
}
|
||||
if (libInputStream != null) libInputStream.close();
|
||||
libInputStream.close();
|
||||
System.load(tempFile.toFile().getAbsolutePath());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user