[Android] Make two class variables in InputConfigFragment private. If left the way they were, they could be accessed by other classes in its package, which is not intended.

This commit is contained in:
Lioncash 2013-08-21 21:27:32 -04:00
parent 97bfa6300d
commit 85c78759c7

View file

@ -28,8 +28,8 @@ public final class InputConfigFragment extends Fragment
private ListView mDrawerList;
private InputConfigAdapter adapter;
private int configPosition = 0;
boolean Configuring = false;
boolean firstEvent = true;
private boolean Configuring = false;
private boolean firstEvent = true;
static public String getInputDesc(InputDevice input)
{