converted from Maven to Gradle

This commit is contained in:
Patrick McDonagh
2017-02-06 18:48:49 -06:00
parent 02b28ca1e6
commit 1699b82067
31 changed files with 454 additions and 176 deletions

View File

@@ -99,7 +99,7 @@ public class Measurement {
if(storeInDatabase){
if(abs(currentValue - lastSentValue) > sendDelta ||
currentTimestamp - lastSentTimestamp > (sendTimeDelta * 1000)){
db.newMeasurement(this);
long l = db.newMeasurement(this);
lastSentValue = currentValue;
}
}