summaryrefslogtreecommitdiffstats
path: root/java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java')
-rw-r--r--java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java b/java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java
index 5d10720b5..d5e61354a 100644
--- a/java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java
+++ b/java/com/android/contacts/common/database/NoNullCursorAsyncQueryHandler.java
@@ -20,9 +20,6 @@ import android.content.AsyncQueryHandler;
import android.content.ContentResolver;
import android.database.Cursor;
import android.net.Uri;
-import android.support.annotation.Nullable;
-import android.support.annotation.VisibleForTesting;
-import java.util.concurrent.atomic.AtomicInteger;
/**
* An {@AsyncQueryHandler} that will never return a null cursor.
@@ -30,8 +27,6 @@ import java.util.concurrent.atomic.AtomicInteger;
* <p>Instead, will return a {@link Cursor} with 0 records.
*/
public abstract class NoNullCursorAsyncQueryHandler extends AsyncQueryHandler {
- private static final AtomicInteger pendingQueryCount = new AtomicInteger();
- @Nullable private static PendingQueryCountChangedListener pendingQueryCountChangedListener;
public NoNullCursorAsyncQueryHandler(ContentResolver cr) {
super(cr);
@@ -46,11 +41,6 @@ public abstract class NoNullCursorAsyncQueryHandler extends AsyncQueryHandler {
String selection,
String[] selectionArgs,
String orderBy) {
- pendingQueryCount.getAndIncrement();
- if (pendingQueryCountChangedListener != null) {
- pendingQueryCountChangedListener.onPendingQueryCountChanged();
- }
-
final CookieWithProjection projectionCookie = new CookieWithProjection(cookie, projection);
super.startQuery(token, projectionCookie, uri, projection, selection, selectionArgs, orderBy);
}
@@ -65,31 +55,10 @@ public abstract class NoNullCursorAsyncQueryHandler extends AsyncQueryHandler {
cursor = new EmptyCursor(projectionCookie.projection);
}
onNotNullableQueryComplete(token, projectionCookie.originalCookie, cursor);
-
- pendingQueryCount.getAndDecrement();
- if (pendingQueryCountChangedListener != null) {
- pendingQueryCountChangedListener.onPendingQueryCountChanged();
- }
}
protected abstract void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor);
- @VisibleForTesting(otherwise = VisibleForTesting.NONE)
- public static void setPendingQueryCountChangedListener(
- @Nullable PendingQueryCountChangedListener listener) {
- pendingQueryCountChangedListener = listener;
- }
-
- @VisibleForTesting(otherwise = VisibleForTesting.NONE)
- public static int getPendingQueryCount() {
- return pendingQueryCount.get();
- }
-
- /** Callback to listen for changes in the number of queries that have not completed. */
- public interface PendingQueryCountChangedListener {
- void onPendingQueryCountChanged();
- }
-
/** Class to add projection to an existing cookie. */
private static class CookieWithProjection {