Cleanup toString() method

Change-Id: I95e20c9dfe6a7762fdc3d1b4b99884b580a53822
This commit is contained in:
Deklan Dieterly 2015-04-10 14:14:08 -06:00
parent 6478dbed8a
commit 9a0553e535

View File

@ -67,8 +67,14 @@ public class Metric implements Serializable {
@Override
public String toString() {
return "Metric{" + "name='" + name + '\'' + ", dimensions=" + dimensions + ", timeStamp='"
+ timestamp + '\'' + ", value=" + value + ", valueMeta=" + valueMeta + '}';
return "Metric{" +
"name='" + name + '\'' +
", dimensions=" + dimensions +
", timestamp=" + timestamp +
", value=" + value +
", valueMeta=" + valueMeta +
", definition=" + definition +
'}';
}
@Override