Skip to content

Commit

Permalink
UDOC-0 - Improve enum readability
Browse files Browse the repository at this point in the history
  • Loading branch information
telvarost committed Mar 12, 2024
1 parent 91149d8 commit 9f58dca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ yarn_mappings=b1.7.3-build.2
loader_version=0.14.24-babric.1

# Mod Properties
mod_version=1.4.0
mod_version=1.4.1
maven_group=com.github.telvarost
archives_base_name=BetterScreenshots

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ public enum IsometricAngleEnum {
IsometricAngleEnum(String stringValue) {
this.stringValue = stringValue;
}

@Override
public String toString() {
return stringValue;
}
}

0 comments on commit 9f58dca

Please sign in to comment.