summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/Form.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-08-23 11:23:10 +0300
committerLeif Åstrand <leif@vaadin.com>2012-08-23 11:23:10 +0300
commitaf8afede9f0d196a28792dea9e587a1eac829902 (patch)
treeb95ec915d266e8a95f781b27b5b204503d4eb0fd /server/src/com/vaadin/ui/Form.java
parent8606feb8596ed8f6cd3ed41160706b692f6f4679 (diff)
downloadvaadin-framework-af8afede9f0d196a28792dea9e587a1eac829902.tar.gz
vaadin-framework-af8afede9f0d196a28792dea9e587a1eac829902.zip
Handle requestRepaint automatically (#9325)
Diffstat (limited to 'server/src/com/vaadin/ui/Form.java')
-rw-r--r--server/src/com/vaadin/ui/Form.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/server/src/com/vaadin/ui/Form.java b/server/src/com/vaadin/ui/Form.java
index 689a088c41..8f63ad511a 100644
--- a/server/src/com/vaadin/ui/Form.java
+++ b/server/src/com/vaadin/ui/Form.java
@@ -820,10 +820,6 @@ public class Form extends AbstractField<Object> implements Item.Editor,
// Replace the previous layout
layout.setParent(this);
getState().setLayout(layout);
-
- // Hierarchy has changed so we need to repaint (this could be a
- // hierarchy repaint only)
- requestRepaint();
}
/**
@@ -1239,11 +1235,6 @@ public class Form extends AbstractField<Object> implements Item.Editor,
getState().setFooter(footer);
footer.setParent(this);
-
- // Hierarchy has changed so we need to repaint (this could be a
- // hierarchy repaint only)
- requestRepaint();
-
}
@Override