Skip to content

Commit

Permalink
fix toString
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Nov 19, 2023
1 parent 61f8c3a commit dbdb9de
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 @@ -4,7 +4,7 @@ packaging=jar
description=Mixin (Fabric fork)
url=https://fabricmc.net
organization=FabricMC
buildVersion=0.13.2
buildVersion=0.13.3
upstreamMixinVersion=0.8.5
buildType=RELEASE
asmVersion=9.6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ public static Keys of(String name) {
}
return key;
}

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

}

Expand Down

0 comments on commit dbdb9de

Please sign in to comment.