[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:
parent
97bfa6300d
commit
85c78759c7
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue