Bug 1041836: Delete redundant initialisers. (generated) r=rnewman

This commit is contained in:
Chris Kitching
2014-07-25 20:14:47 -07:00
parent 9e51564a67
commit 6c49e51198
81 changed files with 173 additions and 173 deletions

View File

@@ -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;