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 f84074c commit 161a382Copy full SHA for 161a382
src/main/java/net/kyori/option/OptionSchemaImpl.java
@@ -71,6 +71,13 @@ public OptionState emptyState() {
71
return this.emptyState;
72
}
73
74
+ @Override
75
+ public String toString() {
76
+ return "OptionSchemaImpl{" +
77
+ "options=" + this.options +
78
+ '}';
79
+ }
80
+
81
static final class Instances {
82
static OptionSchemaImpl.MutableImpl GLOBAL = new OptionSchemaImpl(null).new MutableImpl();
83
@@ -146,5 +153,10 @@ public boolean has(final @NotNull Option<?> option) {
146
153
public OptionState emptyState() {
147
154
return OptionSchemaImpl.this.emptyState();
148
155
156
157
158
159
+ return "MutableImpl{schema=" + OptionSchemaImpl.this + "}";
160
149
161
150
162
0 commit comments