We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab536b5 commit b85e936Copy full SHA for b85e936
src/main/java/com/bobrust/settings/type/EnumType.java
@@ -24,9 +24,9 @@ public void setAbstract(Object value) {
24
if (value == null) {
25
this.value = defaultValue;
26
parent.update(this);
27
- } else if (value.getClass().isInstance(defaultValue.getClass())) {
+ } else if (defaultValue.getDeclaringClass().isAssignableFrom(value.getClass())) {
28
this.value = defaultValue.getDeclaringClass().cast(value);
29
- parent.update(this);
+ parent.update(this);
30
}
31
32
src/main/resources/version
@@ -1 +1 @@
1
-0.3.58
+0.3.59
version.properties
@@ -1,2 +1,2 @@
-#Wed Jul 12 19:45:38 CEST 2023
2
-build_id=59
+#Thu Jul 13 18:45:38 CEST 2023
+build_id=60
0 commit comments