1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04: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;
}