Skip to content

Commit

Permalink
removed this and extra whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
crankycoder committed Sep 5, 2014
1 parent 19ed5df commit 3e2b9ed
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/org/mozilla/mozstumbler/client/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,22 +56,21 @@ public final class MainActivity extends FragmentActivity


public synchronized void setGpsFixes(int fixes) {
this.mGpsFixes = fixes;
mGpsFixes = fixes;
}

public synchronized void setGpsSats(int sats) {
this.mGpsSats = sats;
mGpsSats = sats;
}

public synchronized int getGpsFixes() {
return this.mGpsFixes;
return mGpsFixes;
}

public synchronized int getGpsSats() {
return this.mGpsSats;
return mGpsSats;
}


private BroadcastReceiver notificationDrawerEventReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Expand Down

0 comments on commit 3e2b9ed

Please sign in to comment.