Skip to content

Commit

Permalink
fix: 0.2.32.1 - fixed custom driver class loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Misat11 committed May 12, 2024
1 parent ab8d00e commit e9c6a7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

allprojects {
group = 'org.screamingsandals.bedwars'
version = '0.2.32'
version = '0.2.32.1'
}

if (version.toString().endsWith('-SNAPSHOT')) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void initialize() {
driverClassName = reader.readLine();
if (driverClassName != null) {
// All characters after '#' should be ignored, whitespaces around the qualified name are also ignored
driverClassName = driver.split("#", 2)[0].trim();
driverClassName = driverClassName.split("#", 2)[0].trim();
}
} while (driverClassName != null && driverClassName.isEmpty());
}
Expand Down

0 comments on commit e9c6a7b

Please sign in to comment.