Merge "Catch IOException for close"

This commit is contained in:
Adam Powell
2012-01-10 14:11:49 -08:00
committed by Android (Google) Code Review

View File

@@ -79,7 +79,9 @@ public class SharingReceiverSupport extends Activity {
reader.close();
}
} 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);
}
}