From 7bb241d877cbda65752a606c11984ace81c878ff Mon Sep 17 00:00:00 2001 From: Daniel Kaneider Date: Wed, 23 Sep 2015 17:54:09 +0200 Subject: [PATCH] Added RemovableSlot interface to NestedSlot This would actually fix #729. NestedSlot already returns true in the isRemovable method. Therefore the class should also implement that interface. --- .../com/gwtplatform/mvp/client/presenter/slots/NestedSlot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gwtp-core/gwtp-mvp-client/src/main/java/com/gwtplatform/mvp/client/presenter/slots/NestedSlot.java b/gwtp-core/gwtp-mvp-client/src/main/java/com/gwtplatform/mvp/client/presenter/slots/NestedSlot.java index 3aa806f6a4..30e96b9256 100644 --- a/gwtp-core/gwtp-mvp-client/src/main/java/com/gwtplatform/mvp/client/presenter/slots/NestedSlot.java +++ b/gwtp-core/gwtp-mvp-client/src/main/java/com/gwtplatform/mvp/client/presenter/slots/NestedSlot.java @@ -26,7 +26,7 @@ * @see: https://github.com/ArcBees/GWTP/wiki/Presenter-%22Slots%22 */ public class NestedSlot extends GwtEvent.Type> - implements IsSingleSlot> { + implements IsSingleSlot>, RemovableSlot> { @Override public boolean isPopup() { return false;