Close input stream after reading to fix strict mode warning.
This commit is contained in:
parent
2b0b929aa2
commit
c44b19cda6
1 changed files with 9 additions and 2 deletions
|
@ -1060,8 +1060,15 @@ public class MimeUtility {
|
|||
* 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.
|
||||
*/
|
||||
InputStream in = part.getBody().getInputStream();
|
||||
return readToString(in, charset);
|
||||
InputStream in = null;
|
||||
try {
|
||||
in = part.getBody().getInputStream();
|
||||
return readToString(in, charset);
|
||||
} finally {
|
||||
if (in != null) {
|
||||
in.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue