Skip to content

Commit

Permalink
[#5772] Same toString() format as Converters.inverse()
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jan 5, 2017
1 parent 4543d89 commit e176fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jOOQ/src/main/java/org/jooq/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public final Class<U> toType() {

@Override
public String toString() {
return "Converter[T=" + fromType.getName() + ",U=" + toType.getName() + "]";
return "Converter [ " + fromType.getName() + " -> " + toType.getName() + " ]";
}
};
}
Expand Down

0 comments on commit e176fd9

Please sign in to comment.