Bug 1041836: Delete redundant initialisers. (generated) r=rnewman
This commit is contained in:
@@ -29,13 +29,13 @@ public class SQLiteBridge {
|
||||
private String mDb;
|
||||
|
||||
// Pointer to the database if it was opened with openDatabase. 0 implies closed.
|
||||
protected volatile long mDbPointer = 0L;
|
||||
protected volatile long mDbPointer;
|
||||
|
||||
// Values remembered after a query.
|
||||
private long[] mQueryResults;
|
||||
|
||||
private boolean mTransactionSuccess = false;
|
||||
private boolean mInTransaction = false;
|
||||
private boolean mTransactionSuccess;
|
||||
private boolean mInTransaction;
|
||||
|
||||
private static final int RESULT_INSERT_ROW_ID = 0;
|
||||
private static final int RESULT_ROWS_CHANGED = 1;
|
||||
|
||||
Reference in New Issue
Block a user