1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-03-03 01:51:49 -05:00

Fix NullPointerException

This commit is contained in:
cketti 2013-02-03 17:00:56 +01:00
parent 8899031a3b
commit e2ce85706d

View File

@ -661,6 +661,10 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
}
private DateFormat getTimeFormat() {
if (mTimeFormat == null) {
setupFormats();
}
return mTimeFormat;
}