Back out bug 718760, bug 725052, bug 732069 because of broken Android build

This commit is contained in:
Matt Brubeck
2012-03-12 10:37:22 -07:00
parent ac9835e7d9
commit 3cb1567169
26 changed files with 204 additions and 1053 deletions

View File

@@ -228,21 +228,8 @@ public class MatrixBlobCursor extends AbstractCursor {
}
}
public void set(int column, Object value) {
if (column < 0 || column >= columnCount) {
throw new CursorIndexOutOfBoundsException("Requested column: "
+ column + ", # of columns: " + columnCount);
}
if (mPos < 0) {
throw new CursorIndexOutOfBoundsException("Before first row.");
}
if (mPos >= rowCount) {
throw new CursorIndexOutOfBoundsException("After last row.");
}
data[mPos * columnCount + column] = value;
}
// AbstractCursor implementation.
@Override
public int getCount() {
return rowCount;