Minor cleanup

This commit is contained in:
bspeice
2013-10-19 19:58:53 -04:00
父節點 f19c6b8735
當前提交 48e6a06d3a
共有 2 個文件被更改,包括 0 次插入11 次删除

查看文件

@ -1,6 +1,5 @@
package com.uncc.gameday.activities;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;

查看文件

@ -1,17 +1,13 @@
package com.uncc.gameday.activities;
import java.util.Date;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import com.uncc.gameday.R;
import com.uncc.gameday.alerts.Alert;
import com.uncc.gameday.alerts.AlertService;
public class Home extends MenuActivity {
@ -45,10 +41,4 @@ public class Home extends MenuActivity {
editor.commit();
}
}
private void getRecentAlerts() {
// Responsible for discovering what the most recent alerts are and showing them.
// Likely should be implemented by querying a local DB of alerts, grabbing recent 20.
}
}