mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 21:03:54 +01:00
Standardize tags
This commit is contained in:
parent
1ea1b9f502
commit
7e025ad50b
4 changed files with 4 additions and 4 deletions
|
|
@ -24,7 +24,7 @@ public class NearbyActivity extends AppCompatActivity {
|
|||
private double currentLatitude, currentLongitude;
|
||||
//private String gpsCoords;
|
||||
|
||||
private static final String TAG = "NearbyActivity";
|
||||
private static final String TAG = NearbyActivity.class.getName();
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public class NearbyListFragment extends ListFragment implements TaskListener {
|
|||
private List<Place> places;
|
||||
private LatLng mLatestLocation;
|
||||
|
||||
private static final String TAG = "NearbyListFragment";
|
||||
private static final String TAG = NearbyListFragment.class.getName();
|
||||
|
||||
public NearbyListFragment() {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ import java.util.List;
|
|||
|
||||
public class NearbyPlaces {
|
||||
|
||||
private static final String TAG = "NearbyPlaces";
|
||||
private static final String TAG = NearbyPlaces.class.getName();
|
||||
static List<Place> places = null;
|
||||
|
||||
public static List<Place> get() {
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public class SingleUploadFragment extends Fragment {
|
|||
|
||||
private OnUploadActionInitiated uploadActionInitiatedHandler;
|
||||
|
||||
private static final String TAG = "SingleUploadFragment";
|
||||
private static final String TAG = SingleUploadFragment.class.getName();
|
||||
|
||||
@Override
|
||||
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue