Skip to content

Commit

Permalink
made fields private
Browse files Browse the repository at this point in the history
  • Loading branch information
doneill committed Apr 9, 2016
1 parent 623fd80 commit de7110b
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,25 @@

public class MainActivity extends Activity {

MapView mMapView;
ArcGISFeatureLayer mFeatureLayer;
GraphicsLayer mGraphicsLayer;
private MapView mMapView;
private ArcGISFeatureLayer mFeatureLayer;
private GraphicsLayer mGraphicsLayer;
private Callout mCallout;
private Graphic mIdentifiedGraphic;

private int mCalloutStyle;
private ViewGroup mCalloutContent;
boolean mIsMapLoaded;
String mFeatureServiceURL;
private boolean mIsMapLoaded;
private String mFeatureServiceURL;

ProgressDialog progress;
private ProgressDialog progress;

// The query params switching menu items.
MenuItem mQueryUsMenuItem = null;
MenuItem mQueryCaMenuItem = null;
MenuItem mQueryFrMenuItem = null;
MenuItem mQueryAuMenuItem = null;
MenuItem mQueryBrMenuItem = null;
private MenuItem mQueryUsMenuItem = null;
private MenuItem mQueryCaMenuItem = null;
private MenuItem mQueryFrMenuItem = null;
private MenuItem mQueryAuMenuItem = null;
private MenuItem mQueryBrMenuItem = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down Expand Up @@ -129,7 +129,7 @@ public void onSingleTap(float x, float y) {
* @param y
* y co-ordinate of point
*/
void identifyLocation(float x, float y) {
private void identifyLocation(float x, float y) {

// Hide the callout, if the callout from previous tap is still showing
// on map
Expand Down

0 comments on commit de7110b

Please sign in to comment.