java/com.sap.sailing.gwt.ui/src/main/java/com/sap/sailing/gwt/home/shared/places/user/profile/preferences/MiscPreferencesPresenter.java
... ...
@@ -5,10 +5,10 @@ import com.sap.sailing.gwt.home.shared.partials.multiselection.MiscellaneousDisp
5 5
import com.sap.sse.gwt.dispatch.shared.commands.VoidResult;
6 6
7 7
public interface MiscPreferencesPresenter {
8
- public void registerDisplay(MiscellaneousDisplayImpl display);
8
+ void registerDisplay(MiscellaneousDisplayImpl display);
9 9
10
- public void updateIsSubscribedToFeatureAndCommunityUpdates(final boolean b, final AsyncCallback<VoidResult> callback);
10
+ void updateIsSubscribedToFeatureAndCommunityUpdates(final boolean b, final AsyncCallback<VoidResult> callback);
11 11
12 12
/** get value via dispatch method, set first correct value onto checkbox */
13
- public void initIsSubscribedToFeatureAndCommunityUpdates(final boolean b);
13
+ void initIsSubscribedToFeatureAndCommunityUpdates(final boolean b);
14 14
}