mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
Change from IDE help
This commit is contained in:
parent
d10ea16dac
commit
4efe07c33a
3 changed files with 5 additions and 3 deletions
|
@ -39,6 +39,10 @@ class DBHelper extends SQLiteOpenHelper {
|
|||
private static final String[] COLUMS = {KEY_ID, KEY_CIS,KEY_CIP13, KEY_NAME, KEY_ADMIN, KEY_PRES, KEY_STOCK, KEY_PRISE,
|
||||
KEY_SEUIL_WARN, KEY_SEUIL_ALERT};
|
||||
|
||||
public DBHelper() {
|
||||
super();
|
||||
}
|
||||
|
||||
public static synchronized DBHelper getInstance(Context context) {
|
||||
if (sInstance == null) {
|
||||
sInstance = new DBHelper(context.getApplicationContext());
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
package net.foucry.pilldroid;
|
||||
|
||||
import android.view.FocusFinder;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.lang.String;
|
||||
import java.text.SimpleDateFormat;
|
||||
|
|
|
@ -13,7 +13,7 @@ import android.util.Log;
|
|||
*/
|
||||
public class NotificationPublisher extends BroadcastReceiver {
|
||||
|
||||
private static String TAG = NotificationPublisher.class.getName();;
|
||||
private static String TAG = NotificationPublisher.class.getName();
|
||||
public static String NOTIFICATION_ID = "notification-id";
|
||||
public static String NOTIFICATION = "notification";
|
||||
|
||||
|
|
Loading…
Reference in a new issue