]> source.dussan.org Git - vaadin-framework.git/commitdiff
removed clearing idToComponent & vs. maps on repaint (causes issues with multiple...
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 28 Nov 2007 14:42:04 +0000 (14:42 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 28 Nov 2007 14:42:04 +0000 (14:42 +0000)
svn changeset:3024/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/server/CommunicationManager.java

index 3cb7d73caf4b1f9b18575bff6d57b16e783b03fc..25a5f404d8a6873b7e958e0c856ff9d81c8592dc 100644 (file)
@@ -240,12 +240,6 @@ public class CommunicationManager implements Paintable.RepaintRequestListener,
         boolean repaintAll = (request.getParameter(GET_PARAM_REPAINT_ALL) != null)
                 || request.getSession().isNew();
 
-        // If repaint is requested, clean all ids
-        if (repaintAll) {
-            idPaintableMap.clear();
-            paintableIdMap.clear();
-        }
-
         OutputStream out = response.getOutputStream();
         PrintWriter outWriter = new PrintWriter(new BufferedWriter(
                 new OutputStreamWriter(out, "UTF-8")));