add more stubs

This commit is contained in:
Julian Winkler
2023-11-08 21:40:39 +01:00
parent 9f74ab811e
commit 72a8b3a047
21 changed files with 128 additions and 34 deletions

View File

@@ -402,7 +402,11 @@ public class CursorWindow extends SQLiteClosable implements Parcelable {
* @return The value of the field as a <code>long</code>.
*/
public long getLong(int row, int column) {
return (Long)rows.get(row - startPos)[column];
Long field = (Long)rows.get(row - startPos)[column];
if (field == null) {
return 0L;
}
return field.longValue();
}
/**