back out test

This commit is contained in:
sonora 2015-04-16 22:29:47 +02:00
parent 397ba72f1c
commit 5b135660d1

View file

@ -137,16 +137,16 @@ public class SavingTrackHelper extends SQLiteOpenHelper {
try {
Cursor q = db.query(false, TRACK_NAME, new String[0], null, null, null, null, null, null);
//Looks like db is created even if user cancels out of "start recording" dialogue, hence also ask if db contains track points at all here
boolean has = q.moveToFirst() && (getLastTrackPointTime() > 0L);
boolean has = q.moveToFirst() && (getLastTrackPointTime() != 0L);
q.close();
if (has) {
// return true;
return true;
}
q = db.query(false, POINT_NAME, new String[0], null, null, null, null, null, null);
has = q.moveToFirst() && (getLastTrackPointTime() > 0L);
has = q.moveToFirst() && (getLastTrackPointTime() =! 0L);
q.close();
if (has) {
// return true;
return true;
}
} finally {
db.close();