Moving GrantType to v2 package

This commit is contained in:
Martin Stockhammer 2020-12-31 15:43:49 +01:00
parent f75686964e
commit 52aeae3983
2 changed files with 1 additions and 4 deletions

View File

@ -57,9 +57,6 @@ public static GrantType byLabel(String label) {
@Override
public String toString( )
{
final StringBuilder sb = new StringBuilder( "GrantType{" );
sb.append( "label='" ).append( label ).append( '\'' );
sb.append( '}' );
return sb.toString( );
return this.label;
}
}