From 994cdd0a70c9758a625e0519959154fd92cb0b48 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Thu, 8 May 2008 13:29:24 +0000 Subject: [PATCH] fixes #1631 svn changeset:4396/svn branch:trunk --- .../toolkit/terminal/gwt/server/WebApplicationContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java b/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java index 79eae4b484..65587890ab 100644 --- a/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java +++ b/src/com/itmill/toolkit/terminal/gwt/server/WebApplicationContext.java @@ -195,7 +195,7 @@ public class WebApplicationContext implements ApplicationContext, // If any runtime exceptions occurred, throw a combined exception if (exceptions != null) { final StringBuffer msg = new StringBuffer(); - for (final Iterator i = listeners.iterator(); i.hasNext();) { + for (final Iterator i = exceptions.iterator(); i.hasNext();) { final RuntimeException e = (RuntimeException) i.next(); if (msg.length() == 0) { msg.append("\n\n--------------------------\n\n"); -- 2.39.5