diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2014-03-13 13:28:16 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2014-03-13 13:28:16 +0100 |
commit | 53fa87b414b87de73a79f0e60aa1a4d7d21c3dc9 (patch) | |
tree | 2984a7fa06196135a022e614b5ce01cc4eeec86c /src/eu/siacs/conversations/ui/ConversationFragment.java | |
parent | eec39066928c65bc7d2a36913ec21f83c5a763b6 (diff) |
removed unnecessary uihelper method
Diffstat (limited to 'src/eu/siacs/conversations/ui/ConversationFragment.java')
-rw-r--r-- | src/eu/siacs/conversations/ui/ConversationFragment.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/eu/siacs/conversations/ui/ConversationFragment.java b/src/eu/siacs/conversations/ui/ConversationFragment.java index 208f6f6f..2aabec87 100644 --- a/src/eu/siacs/conversations/ui/ConversationFragment.java +++ b/src/eu/siacs/conversations/ui/ConversationFragment.java @@ -563,12 +563,7 @@ public class ConversationFragment extends Fragment { if (bitmaps.containsKey(name)) { return bitmaps.get(name); } else { - Bitmap bm; - if (contact == null) { - bm = UIHelper.getContactPictureByName(name, 200); - } else { - bm = UIHelper.getContactPicture(contact, 200, context); - } + Bitmap bm = UIHelper.getContactPicture(contact, name, 200, context); bitmaps.put(name, bm); return bm; } |