Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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.
  • Loading branch information
lioncash committed Aug 22, 2013
1 parent 97bfa63 commit 85c7875
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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)
{
Expand Down

0 comments on commit 85c7875

Please sign in to comment.