Remove dead code

pull/30/head
Alinson S. Xavier 10 years ago
parent d862c85874
commit d6f31b8775

@ -201,33 +201,6 @@ public class Habit extends Model
} }
public static void roundTimestamps()
{
List<Repetition> reps = new Select().from(Repetition.class).execute();
for (Repetition r : reps)
{
r.timestamp = DateHelper.getStartOfDay(r.timestamp);
r.save();
}
}
public static void recomputeAllScores()
{
for (Habit habit : getHabits())
{
habit.deleteScoresNewerThan(0);
}
}
public static int getStarCount()
{
String args[] = {};
return SQLiteUtils.intQuery("select count(*) from (select score, max(timestamp) from " +
"score group by habit) as scores where scores.score >= " +
Integer.toString(12973000), args);
}
public void copyAttributes(Habit model) public void copyAttributes(Habit model)
{ {
this.name = model.name; this.name = model.name;
@ -264,11 +237,6 @@ public class Habit extends Model
return (count > 0); return (count > 0);
} }
public boolean hasRepToday()
{
return hasRep(DateHelper.getStartOfToday());
}
public void deleteReps(long timestamp) public void deleteReps(long timestamp)
{ {
new Delete().from(Repetition.class) new Delete().from(Repetition.class)
@ -543,11 +511,6 @@ public class Habit extends Model
return lastScore; return lastScore;
} }
public List<Score> getScores(long fromTimestamp, long toTimestamp)
{
return getScores(fromTimestamp, toTimestamp, 1, 0);
}
public List<Score> getScores(long fromTimestamp, long toTimestamp, int divisor, long offset) public List<Score> getScores(long fromTimestamp, long toTimestamp, int divisor, long offset)
{ {
return new Select().from(Score.class) return new Select().from(Score.class)

Loading…
Cancel
Save