Tables set up, JSON implementations deprecated

This commit is contained in:
Phillip Hsu
2016-06-26 15:31:54 -07:00
parent 918b935be0
commit a1c72f8ef9
11 changed files with 188 additions and 80 deletions
@@ -32,12 +32,6 @@ public class DummyContent {
}
private static Alarm createAlarm(int position) {
Alarm.Builder b = Alarm.builder();
if (position % 2 == 0) {
b.hour(21).minutes(0);
}
Alarm a = b.id(position).build();
a.setEnabled(true);
return a;
return null;
}
}