Merge pull request #181 from Unicon/Tostring

Let ConfigurationKey toString() the name
This commit is contained in:
Misagh Moayyed 2016-09-07 20:53:38 +04:30 committed by GitHub
commit 527f0c6d28
1 changed files with 5 additions and 0 deletions

View File

@ -60,4 +60,9 @@ public final class ConfigurationKey<E> {
public E getDefaultValue() {
return this.defaultValue;
}
@Override
public String toString() {
return getName();
}
}