SharedLibraryLoader: Fix leaked Closeable warning

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-02-15 18:53:30 +05:30
parent da1188c6ee
commit a62bd28e1f

View File

@ -56,6 +56,7 @@ public final class SharedLibraryLoader {
} }
out.getFD().sync(); out.getFD().sync();
} }
zipFile.close();
return true; return true;
} }
} }