Skip to content

Commit 332f35a

Browse files
committed
release: Version 1.2.0
1 parent 40efeb8 commit 332f35a

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

backend/common/src/main/java/io/github/_4drian3d/signedvelocity/common/PropertyHolder.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,7 @@ public static boolean readBoolean(final String property, final boolean defaultVa
1010
if (value == null) {
1111
return defaultValue;
1212
} else {
13-
try {
14-
return "true".equalsIgnoreCase(value);
15-
} catch (final Exception ignored) {
16-
return defaultValue;
17-
}
18-
13+
return "true".equalsIgnoreCase(value);
1914
}
2015
}
2116

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
group = io.github._4drian3d
2-
version = 1.1.1-SNAPSHOT
2+
version = 1.2.0
33
description = Allows you to cancel or modify messages or commands from Velocity without synchronization problems
44
org.gradle.jvmargs=-Xmx2G

0 commit comments

Comments
 (0)