[#6968] Implement IdentityConverter.toString()
This commit is contained in:
parent
b099dc4f39
commit
e7ad321665
@ -87,6 +87,11 @@ public class Converters<T, U> implements Converter<T, U> {
|
||||
public final Class<T> toType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "IdentityConverter [ " + fromType().getName() + " ]";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user