Review fixes.

This commit is contained in:
vng 2015-04-08 16:06:32 +03:00 committed by Alex Zolotarev
parent 00bdffaba3
commit 26ed23264c
2 changed files with 6 additions and 5 deletions

View file

@ -15,8 +15,8 @@ public class LocationPredictor
private Handler mHandler;
private LocationHelper.LocationListener mListener;
private Location mLastLocation = null;
private boolean mGeneratePredictions = false;
private Location mLastLocation;
private boolean mGeneratePredictions;
private int mPredictionCount;
private int mConnectionSlot;

View file

@ -1,5 +1,6 @@
package com.mapswithme.maps.widget.placepage;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Context;
@ -763,11 +764,11 @@ public class PlacePageView extends RelativeLayout implements View.OnClickListene
}
@Override
@SuppressLint("NewApi")
public boolean onLongClick(View v)
{
/// @todo Review this code in case of API level < 11.
if (Utils.apiLowerThan(11))
return true;
// This callback is invoked only for API level >= 11.
// See initViews function for more details.
final Object tag = v.getTag();
final String tagStr = tag == null ? "" : tag.toString();