Minor cleanup

master
bspeice 2013-10-19 19:58:53 -04:00
parent f19c6b8735
commit 48e6a06d3a
2 changed files with 0 additions and 11 deletions

View File

@ -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;

View File

@ -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.
}
}