summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-01-23 08:00:40 +0000
committerVaadin Code Review <review@vaadin.com>2013-01-23 08:00:40 +0000
commitc62a76f02d0587aa9bf6c1a95d2c308dbea0093b (patch)
tree48c56c11d4e32b247c7cdedb93004f1f64f19856 /server
parentbf3a8f2a7e571fdffab794ed029112561ad836f3 (diff)
parente2e2b2c1e8acc2163d117dd8193b7ecc445f4ff8 (diff)
downloadvaadin-framework-c62a76f02d0587aa9bf6c1a95d2c308dbea0093b.tar.gz
vaadin-framework-c62a76f02d0587aa9bf6c1a95d2c308dbea0093b.zip
Merge "Ensure window is closed even if close listener throws an exception (#10779)"
Diffstat (limited to 'server')
-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;
}