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 enum GrantType
@Override @Override
public String toString( ) public String toString( )
{ {
final StringBuilder sb = new StringBuilder( "GrantType{" ); return this.label;
sb.append( "label='" ).append( label ).append( '\'' );
sb.append( '}' );
return sb.toString( );
} }
} }