summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationStaleListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationStaleListener.java')
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationStaleListener.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationStaleListener.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationStaleListener.java
deleted file mode 100644
index 6bbe7f34b3..0000000000
--- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/OnLocationStaleListener.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.mapbox.mapboxsdk.location;
-
-/**
- * Listener that can be added as a callback when the last location update
- * is considered stale.
- * <p>
- * The time from the last location update that determines if a location update
- * is stale or not is provided by {@link LocationComponentOptions#staleStateTimeout()}.
- */
-public interface OnLocationStaleListener {
-
- /**
- * Called when the stale state changes.
- * @param isStale true if location is stale, false otherwise
- */
- void onStaleStateChange(boolean isStale);
-}