Merge pull request #3465 from izeye/patch-33

* pr/3465:
  Polish toString()
This commit is contained in:
Stephane Nicoll 2015-07-13 09:52:49 +02:00
commit 9340491422
1 changed files with 3 additions and 3 deletions

View File

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