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;
}