Browse Source

Add missing call to super.detach() (#6690)

tags/7.0.0.alpha3
Leif Åstrand 12 years ago
parent
commit
1115e1f8bb
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      src/com/vaadin/ui/AbstractComponent.java

+ 1
- 0
src/com/vaadin/ui/AbstractComponent.java View 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

Loading…
Cancel
Save