am 30e2c473: Merge "Catch IOException for close"

* commit '30e2c473e896af55fb14a03e99d0841d2753da8d':
  Catch IOException for close
This commit is contained in:
Adam Powell
2012-01-10 14:46:39 -08:00
committed by Android Git Automerger

View File

@@ -79,7 +79,9 @@ public class SharingReceiverSupport extends Activity {
reader.close(); reader.close();
} }
} catch (FileNotFoundException e) { } catch (FileNotFoundException e) {
Log.e(TAG, "File not found from share: " + e); Log.e(TAG, "File not found from share.", e);
} catch (IOException e) {
Log.d(TAG, "I/O Error", e);
} }
} }