Remove the deprecated cursor methods.

Change-Id: Ie3571fea9f36996c31c327240b11086f8cc487f0
This commit is contained in:
Jeff Hamilton
2010-05-12 17:30:27 -05:00
parent 93f8547dcf
commit 7cd51efcbd
14 changed files with 10 additions and 986 deletions

View File

@@ -181,24 +181,6 @@ public class SortCursor extends AbstractCursor
return true;
}
@Override
public boolean deleteRow()
{
return mCursor.deleteRow();
}
@Override
public boolean commitUpdates() {
int length = mCursors.length;
for (int i = 0 ; i < length ; i++) {
if (mCursors[i] != null) {
mCursors[i].commitUpdates();
}
}
onChange(true);
return true;
}
@Override
public String getString(int column)
{