aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-01-21 21:52:00 +0200
committerArtur Signell <artur@vaadin.com>2013-01-21 21:54:01 +0200
commite2e2b2c1e8acc2163d117dd8193b7ecc445f4ff8 (patch)
tree280f3501e03c8bb034452777468e123ed6a4fc96 /server/src/com
parentc21d29f7b1168f23c4ff98f5dc9e9e65458b1a14 (diff)
downloadvaadin-framework-e2e2b2c1e8acc2163d117dd8193b7ecc445f4ff8.tar.gz
vaadin-framework-e2e2b2c1e8acc2163d117dd8193b7ecc445f4ff8.zip
Ensure window is closed even if close listener throws an exception (#10779)
Change-Id: I58621c5f5ff01ccc96de3b602aac35f6fa01aa5b
Diffstat (limited to 'server/src/com')
-rw-r--r--server/src/com/vaadin/ui/UI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java
index 1babc077b8..7e54aa01a0 100644
--- a/server/src/com/vaadin/ui/UI.java
+++ b/server/src/com/vaadin/ui/UI.java
@@ -428,8 +428,8 @@ public abstract class UI extends AbstractSingleComponentContainer implements
return false;
}
window.setParent(null);
- window.fireClose();
markAsDirty();
+ window.fireClose();
return true;
}