INT-937 added brackets in toString

This commit is contained in:
Mark Fisher
2009-12-24 00:38:11 +00:00
parent fd107168df
commit 5cabd501aa

View File

@@ -78,7 +78,7 @@ public class MessageHistory implements Iterable<MessageHistory.Event>, Serializa
}
public String toString() {
return "name=" + this.componentName + ";type=" + this.componentType + ";timestamp=" + this.timestamp;
return "[name=" + this.componentName + ";type=" + this.componentType + ";timestamp=" + this.timestamp + "]";
}
}