minor fix

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/widgets/grsf-manage-widget@160630 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2017-12-18 10:27:07 +00:00
parent e2ba70b08d
commit 8a2f27456c
1 changed files with 2 additions and 6 deletions

View File

@ -1,10 +1,6 @@
package org.gcube.datacatalogue.grsf_manage_widget.client; package org.gcube.datacatalogue.grsf_manage_widget.client;
import org.gcube.datacatalogue.grsf_manage_widget.client.view.ManageProductWidget;
import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.event.shared.HandlerManager;
import com.google.gwt.user.client.ui.RootPanel;
/** /**
* Entry point classes define <code>onModuleLoad()</code>. * Entry point classes define <code>onModuleLoad()</code>.
@ -15,7 +11,7 @@ public class GRSFManageWidget implements EntryPoint {
* This is the entry point method. * This is the entry point method.
*/ */
public void onModuleLoad(){ public void onModuleLoad(){
HandlerManager eventBus = new HandlerManager(null); //HandlerManager eventBus = new HandlerManager(null);
RootPanel.get("manageDiv").add(new ManageProductWidget("fffb6167-b570-42a8-92b9-5be28549c3b8", eventBus)); //RootPanel.get("manageDiv").add(new ManageProductWidget("fffb6167-b570-42a8-92b9-5be28549c3b8", eventBus));
} }
} }