commit | ceff1b5e81fef622feb01def25f8a6775ff8fb72 | [log] [tgz] |
---|---|---|
author | Hugo Hudson <hugohudson@google.com> | Thu Sep 08 03:49:58 2011 -0700 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Sep 08 03:49:58 2011 -0700 |
tree | 0c88271a9be96acd2716fab3f25364e862c9cc9a | |
parent | 413119e9d2e6170383bfe760d2658a34e382e201 [diff] | |
parent | 6895a318ca34528e31fc75f3fca2ca85e612bf43 [diff] |
Merge "Fix broken unit test."
diff --git a/src/com/android/contacts/voicemail/VoicemailPlaybackPresenter.java b/src/com/android/contacts/voicemail/VoicemailPlaybackPresenter.java index f8e497d..becc133 100644 --- a/src/com/android/contacts/voicemail/VoicemailPlaybackPresenter.java +++ b/src/com/android/contacts/voicemail/VoicemailPlaybackPresenter.java
@@ -313,7 +313,7 @@ mPlayer.setAudioStreamType(PLAYBACK_STREAM); mPlayer.prepare(); return null; - } catch (IOException e) { + } catch (Exception e) { return e; } }