Commit 93404914 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #3465 from izeye/patch-33

* pr/3465:
  Polish toString()
parents 3664895f f85f3168
...@@ -84,8 +84,8 @@ public class ItemHint implements Comparable<ItemHint> { ...@@ -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> { ...@@ -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
+ '}'; + '}';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment