summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2008-12-17 14:01:51 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2008-12-17 14:01:51 +0000
commit19542ea7061417e5cd6085e2f74b8054f7676c63 (patch)
treef240367b46abe4a0eeeb3ccd94f018334bda577f /src
parent45a80c0b64d3374e519a7b50325bd703f383107f (diff)
downloadvaadin-framework-19542ea7061417e5cd6085e2f74b8054f7676c63.tar.gz
vaadin-framework-19542ea7061417e5cd6085e2f74b8054f7676c63.zip
fixed bug with json array creation
svn changeset:6253/svn branch:trunk
Diffstat (limited to 'src')
-rw-r--r--src/com/itmill/toolkit/terminal/gwt/server/DebugUtilities.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/itmill/toolkit/terminal/gwt/server/DebugUtilities.java b/src/com/itmill/toolkit/terminal/gwt/server/DebugUtilities.java
index 7da98ed0f0..01c0c94f74 100644
--- a/src/com/itmill/toolkit/terminal/gwt/server/DebugUtilities.java
+++ b/src/com/itmill/toolkit/terminal/gwt/server/DebugUtilities.java
@@ -231,7 +231,7 @@ public class DebugUtilities {
clientJSON.write(", \"subErrors\" : [");
boolean first = true;
for (InvalidLayout subError : subErrors) {
- if (first) {
+ if (!first) {
clientJSON.print(",");
} else {
first = false;