From 5cabd501aa53618bbf3a3d6b55e1d3c44893c9a7 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Thu, 24 Dec 2009 00:38:11 +0000 Subject: [PATCH] INT-937 added brackets in toString --- .../org/springframework/integration/core/MessageHistory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.integration/src/main/java/org/springframework/integration/core/MessageHistory.java b/org.springframework.integration/src/main/java/org/springframework/integration/core/MessageHistory.java index 792d986320..208abbb819 100644 --- a/org.springframework.integration/src/main/java/org/springframework/integration/core/MessageHistory.java +++ b/org.springframework.integration/src/main/java/org/springframework/integration/core/MessageHistory.java @@ -78,7 +78,7 @@ public class MessageHistory implements Iterable, Serializa } public String toString() { - return "name=" + this.componentName + ";type=" + this.componentType + ";timestamp=" + this.timestamp; + return "[name=" + this.componentName + ";type=" + this.componentType + ";timestamp=" + this.timestamp + "]"; } }