Skip to content

Commit 227c7e8

Browse files
committed
Small fix
1 parent 5cdc797 commit 227c7e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RESOURCE_DIR = src/main/resources
88
all: jni-header package
99

1010
deploy:
11-
mvn package deploy -P release --settings settings.xml
11+
mvn deploy -P release --settings settings.xml
1212

1313
DOCKER_RUN_OPTS=--rm
1414
MVN:=mvn

src/main/java/org/sqlite/SQLiteJDBCLoader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ public static final class VersionHolder {
416416
version = versionData.getProperty("version", version);
417417
version = version.trim().replaceAll("[^0-9\\.]", "");
418418
} else {
419-
throw new FileNotFoundException("Version file is null");
420-
}
419+
throw new FileNotFoundException("Version file is null");
420+
}
421421
} catch (IOException e) {
422422
e.printStackTrace();
423423
}

0 commit comments

Comments
 (0)