1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-26 09:38:52 -05:00

Close input stream after reading to fix strict mode warning.

This commit is contained in:
Andrew Chen 2012-09-07 20:27:35 -07:00
parent 2b0b929aa2
commit c44b19cda6

View File

@ -1060,8 +1060,15 @@ public class MimeUtility {
* Now we read the part into a buffer for further processing. Because * Now we read the part into a buffer for further processing. Because
* the stream is now wrapped we'll remove any transfer encoding at this point. * the stream is now wrapped we'll remove any transfer encoding at this point.
*/ */
InputStream in = part.getBody().getInputStream(); InputStream in = null;
return readToString(in, charset); try {
in = part.getBody().getInputStream();
return readToString(in, charset);
} finally {
if (in != null) {
in.close();
}
}
} }
} }