From a91f33b44b967496d16ef5ed443219df3d97d8c4 Mon Sep 17 00:00:00 2001 From: Marc Blank Date: Wed, 19 Oct 2011 12:33:52 -0700 Subject: [PATCH] onMove in CachedCursor shouldn't call the underlying cursor's method Bug: 5472277 Change-Id: Ida5a840d2d27941bb8b548a4d2d985b1082e93b6 --- src/com/android/email/provider/ContentCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/email/provider/ContentCache.java b/src/com/android/email/provider/ContentCache.java index 11ad179a5..d18c3ee87 100644 --- a/src/com/android/email/provider/ContentCache.java +++ b/src/com/android/email/provider/ContentCache.java @@ -396,7 +396,7 @@ public final class ContentCache { @Override public boolean onMove(int oldPosition, int newPosition) { - return ((CrossProcessCursor)mCursor).onMove(oldPosition, newPosition); + return true; } }