This commit is contained in:
M66B 2016-01-06 11:15:53 +01:00
parent 371183e52b
commit 9a5052c654
1 changed files with 0 additions and 4 deletions

View File

@ -14,15 +14,11 @@ import android.widget.TextView;
import java.text.SimpleDateFormat;
public class LogAdapter extends CursorAdapter {
private static final String TAG = "Netguard.Log";
private Context mContext;
private int colTime;
private int colIP;
public LogAdapter(Context context, Cursor cursor) {
super(context, cursor, 0);
mContext = context;
colTime = cursor.getColumnIndex("time");
colIP = cursor.getColumnIndex("ip");
}