Merge "onMove in CachedCursor shouldn't call the underlying cursor's method"

This commit is contained in:
Marc Blank 2011-10-21 17:57:52 -07:00 committed by Android (Google) Code Review
commit 6629f6b67c
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ public final class ContentCache {
@Override
public boolean onMove(int oldPosition, int newPosition) {
return ((CrossProcessCursor)mCursor).onMove(oldPosition, newPosition);
return true;
}
}