Merge pull request #181 from Unicon/Tostring
Let ConfigurationKey toString() the name
This commit is contained in:
commit
527f0c6d28
|
|
@ -60,4 +60,9 @@ public final class ConfigurationKey<E> {
|
|||
public E getDefaultValue() {
|
||||
return this.defaultValue;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return getName();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue