From 94b54a6d63d88c72e4beb6cb2f04743aeb44d0e5 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Mon, 17 Feb 2014 13:22:37 -0800 Subject: [PATCH] Fix build. --- src/org/thoughtcrime/securesms/GroupCreateActivity.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/org/thoughtcrime/securesms/GroupCreateActivity.java b/src/org/thoughtcrime/securesms/GroupCreateActivity.java index 1304a7b8e8..de9a4b767b 100644 --- a/src/org/thoughtcrime/securesms/GroupCreateActivity.java +++ b/src/org/thoughtcrime/securesms/GroupCreateActivity.java @@ -251,12 +251,12 @@ public class GroupCreateActivity extends PassphraseRequiredSherlockFragmentActiv } try { handleCreatePushGroup(groupName.getText().toString(), byteArray, selectedContacts); - } catch (IOException e) { - // TODO Jake's gonna fill this in. - Log.w("GroupCreateActivity", e); } catch (InvalidNumberException e) { // TODO jake's gonna fill this in. Log.w("GroupCreateActivity", e); + } catch (MmsException e) { + // TODO jake's gonna fill this in. + Log.w("GroupCreateActivity", e); } return null; }