summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/server/communication/UidlRequestHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/com/vaadin/server/communication/UidlRequestHandler.java')
-rw-r--r--server/src/com/vaadin/server/communication/UidlRequestHandler.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/server/src/com/vaadin/server/communication/UidlRequestHandler.java b/server/src/com/vaadin/server/communication/UidlRequestHandler.java
index 14303daebc..dba247258a 100644
--- a/server/src/com/vaadin/server/communication/UidlRequestHandler.java
+++ b/server/src/com/vaadin/server/communication/UidlRequestHandler.java
@@ -111,7 +111,6 @@ public class UidlRequestHandler extends SynchronizedRequestHandler {
writeUidl(request, response, uI, stringWriter, repaintAll,
analyzeLayouts);
- postHandleRequest(uI);
} catch (JSONException e) {
getLogger().log(Level.SEVERE, "Error writing JSON to response", e);
// Refresh on client side
@@ -178,19 +177,6 @@ public class UidlRequestHandler extends SynchronizedRequestHandler {
closeJsonMessage(writer);
}
- /**
- * Method called after the paint phase while still being synchronized on the
- * session
- *
- * @param uI
- *
- */
- protected void postHandleRequest(UI uI) {
- // Remove connectors that have been detached from the session during
- // handling of the request
- uI.getConnectorTracker().cleanConnectorMap();
- }
-
protected void closeJsonMessage(Writer outWriter) throws IOException {
outWriter.write("}]");
}