Bug fixed: simple date format template fix

This commit is contained in:
Aleksander Nowakowski
2016-10-21 11:31:35 +02:00
parent 496e6e4607
commit 5c9d516f57

View File

@@ -19,7 +19,7 @@ import no.nordicsemi.android.nrftoolbox.R;
* Created by rora on 02.09.2016.
*/
public class CGMSRecordsAdapter extends BaseAdapter {
private final static SimpleDateFormat mTimeFormat = new SimpleDateFormat("dd.MM.YYYY HH:mm", Locale.US);
private final static SimpleDateFormat mTimeFormat = new SimpleDateFormat("dd.MM.yyyy HH:mm", Locale.US);
private List<CGMSRecord> mRecords;
private LayoutInflater mInflater;