Skip to content

Commit

Permalink
Fix findbugs report
Browse files Browse the repository at this point in the history
  • Loading branch information
uOOOO committed Dec 9, 2019
1 parent a3f109a commit bafe0f4
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class ActivityMviDelegateImpl<V extends MvpView, P extends MviPresenter<V
implements ActivityMviDelegate {


public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "ActivityMviDelegateImpl";
private static final String KEY_MOSBY_VIEW_ID = "com.hannesdorfmann.mosby3.activity.mvi.id";
private String mosbyViewId = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
public class FragmentMviDelegateImpl<V extends MvpView, P extends MviPresenter<V, ?>>
implements FragmentMviDelegate<V, P> {

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "FragmentMviDelegateImpl";
private static final String KEY_MOSBY_VIEW_ID = "com.hannesdorfmann.mosby3.fragment.mvi.id";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class ViewGroupMviDelegateImpl<V extends MvpView, P extends MviPresenter<

// TODO allow custom save state hook in

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "ViewGroupMviDelegateImp";

private ViewGroupMviDelegateCallback<V, P> delegateCallback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ActivityMvpDelegateImpl<V extends MvpView, P extends MvpPresenter<V

protected static final String KEY_MOSBY_VIEW_ID = "com.hannesdorfmann.mosby3.activity.mvp.id";

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "ActivityMvpDelegateImpl";

private MvpDelegateCallback<V, P> delegateCallback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class FragmentMvpDelegateImpl<V extends MvpView, P extends MvpPresenter<V

protected static final String KEY_MOSBY_VIEW_ID = "com.hannesdorfmann.mosby3.fragment.mvp.id";

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "FragmentMvpVSDelegate";

private MvpDelegateCallback<V, P> delegateCallback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class ViewGroupMvpDelegateImpl<V extends MvpView, P extends MvpPresenter<

// TODO allow custom save state hook in

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "ViewGroupMvpDelegateImp";

private ViewGroupDelegateCallback<V, P> delegateCallback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
final public class PresenterManager {

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
public static final String DEBUG_TAG = "PresenterManager";
final static String KEY_ACTIVITY_ID = "com.hannesdorfmann.mosby3.MosbyPresenterManagerActivityId";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class ActivityMvpViewStateDelegateImpl<V extends MvpView, P extends MvpPresenter<V>, VS extends ViewState<V>>
extends ActivityMvpDelegateImpl<V, P> {

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "ActivityMvpViewStateDel";

private MvpViewStateDelegateCallback<V, P, VS> delegateCallback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class FragmentMvpViewStateDelegateImpl<V extends MvpView, P extends MvpPr

protected static final String KEY_MOSBY_VIEW_ID = "com.hannesdorfmann.mosby3.fragment.mvp.id";

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "FragmentMvpDelegateImpl";
private MvpViewStateDelegateCallback<V, P, VS> delegateCallback;
private boolean applyViewState = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class ViewGroupMvpViewStateDelegateImpl<V extends MvpView, P extends MvpP

// TODO allow custom save state hook in

public static boolean DEBUG = false;
public static final boolean DEBUG = false;
private static final String DEBUG_TAG = "ViewGroupMvpViewStateDe";
private ViewGroupMvpViewStateDelegateCallback<V, P, VS> delegateCallback;
private String mosbyViewId;
Expand Down

0 comments on commit bafe0f4

Please sign in to comment.