Hello friends.
I use GIN to implement dependency injection.
I upgraded to version 2.4.0 and I encounter a problem when I "bind (
EventBus.class).To (SimpleEventBus.class). In (Singleton.class);"
The log says "Deferred binding result type '
com.google.gwt.event.shared.EventBus' should not be abstract"
This happens when I change the imported packages of "import
com.google.gwt.event.shared.EventBus;
com.google.gwt.event.shared.SimpleEventBus import, "to" import
com.google.web.bindery.event.shared.EventBus;
import com.google.web.bindery.event.shared.SimpleEventBus;. "
I made this change because the constructor of the class "PlaceController"
is deprecated
"@ Deprecated
   public PlaceController (com.google.gwt.event.shared.EventBus eventBus) {
     this ((EventBus) eventBus);
   } "

Any idea how to solve it?

Thanks and greetings!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to