Skip to content

Commit

Permalink
apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
tiainen committed Nov 10, 2023
1 parent 5f65160 commit 90f8d15
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/java/org/sqlite/SQLiteJDBCLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,10 @@ private static boolean contentsEquals(InputStream in1, InputStream in2) throws I
* @return
*/
private static boolean extractAndLoadLibraryFile(
String libFolderForCurrentOS, String libraryFileName, String targetFolder, String...otherLibraryFileNames) {
String libFolderForCurrentOS,
String libraryFileName,
String targetFolder,
String... otherLibraryFileNames) {
String nativeLibraryFilePath = libFolderForCurrentOS + "/" + libraryFileName;
// Include architecture name in temporary filename in order to avoid conflicts
// when multiple JVMs with different architectures running at the same time
Expand Down Expand Up @@ -351,9 +354,7 @@ private static void loadSQLiteNativeLibrary() throws Exception {
if (hasNativeLib) {
String[] extraLibNames = new String[] {};
if ("Windows".equalsIgnoreCase(OSInfo.getOSName())) {
extraLibNames = new String[] {
sqliteOpenSslLibraryName
};
extraLibNames = new String[] {sqliteOpenSslLibraryName};
}

// temporary library folder
Expand Down

0 comments on commit 90f8d15

Please sign in to comment.