at com.google.gwt.event.shared.EventBus.addHandlerToSource(EventBus.java:39)
I changed all proxy-related code to use
com.google.
web.bindery.* instead of
com.google.
gwt.* to remove all warnings related to deprecated classes/attributes. Everything compiles, but now the application fails to start because of this code.
I have a NestedActivityManager (which almost duplicates com.google.gwt.activity.shared.ActivityManager) that uses
com.google.
gwt.event.shared.ResettableEventBus, and this ResettableEventBus causes the problem.
When I try to replace
com.google.
gwt.event.shared.ResettableEventBus with
com.google.
web.bindery.event.shared.ResettableEventBus, NestedActivityManager cannot compile because currentActivity.start() requires the legacy event bus as the second parameter.
How can this be fixed?