mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Remove dead code
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user