You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
add more stubs
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user