Component state - Bad toString() method

This commit is contained in:
Emmanuel BENOîT 2015-09-15 16:45:03 +02:00
parent 53128c5e77
commit cced54a9fc

View file

@ -71,7 +71,7 @@ public final class ComponentState
sb.append( "component '" ).append( this.name ).append( "'" );
}
sb.append( " of type " ).append( this.component.getClass( ).getCanonicalName( ) );
return super.toString( );
return sb.toString( );
}