Polish toString()

Closes gh-3465
This commit is contained in:
izeye 2015-07-13 11:43:04 +09:00 committed by Stephane Nicoll
parent 3664895f04
commit f85f316873
1 changed files with 3 additions and 3 deletions

View File

@ -84,8 +84,8 @@ public class ItemHint implements Comparable<ItemHint> {
@Override @Override
public String toString() { public String toString() {
return "ItemHint{" + "name='" + this.name + ", values=" + this.values return "ItemHint{" + "name='" + this.name + "', values=" + this.values
+ "providers=" + this.providers + '}'; + ", providers=" + this.providers + '}';
} }
public static class ValueHint { public static class ValueHint {
@ -136,7 +136,7 @@ public class ItemHint implements Comparable<ItemHint> {
@Override @Override
public String toString() { public String toString() {
return "Provider{" + "name='" + this.name + ", parameters=" + this.parameters return "ValueProvider{" + "name='" + this.name + "', parameters=" + this.parameters
+ '}'; + '}';
} }