Skip to content

Commit

Permalink
chore: 1.0.4 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamalam360 committed Feb 8, 2024
1 parent e787e6e commit 6ddccd8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
org.gradle.parallel=true
version=1.0.3+1.20.4
version=1.0.4+1.20.4
minecraft_version=1.20.4
branch=main
group=io.github.jamalam360
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,18 @@ public List<ValidationError> getValidationErrors(ConfigManager<TestConfig> manag

return errors;
}

@Override
public String toString() {
return "TestConfig{" +
"testBoolean=" + testBoolean +
", floatyValue=" + floatyValue +
", floatyValueWithSlider=" + floatyValueWithSlider +
", testString='" + testString + '\'' +
", lowercase='" + lowercase + '\'' +
", testEnum=" + testEnum +
", testInt=" + testInt +
", ifYouSeeThisInTheScreenSomethingIsWrong='" + ifYouSeeThisInTheScreenSomethingIsWrong + '\'' +
'}';
}
}

0 comments on commit 6ddccd8

Please sign in to comment.