]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add missing call to super.detach() (#6690)
authorLeif Åstrand <leif@vaadin.com>
Wed, 6 Jun 2012 10:16:35 +0000 (13:16 +0300)
committerLeif Åstrand <leif@vaadin.com>
Wed, 6 Jun 2012 10:16:35 +0000 (13:16 +0300)
src/com/vaadin/ui/AbstractComponent.java

index 25695e3c0c028f66338786753f984f8099bcaa44..ba0e5db89cde181b60c063889fd0c84f10036bd7 100644 (file)
@@ -609,6 +609,7 @@ public abstract class AbstractComponent extends AbstractClientConnector
      */
     @Override
     public void detach() {
+        super.detach();
         if (actionManager != null) {
             // Remove any existing viewer. Root cast is just to make the
             // compiler happy