Small improvement

This commit is contained in:
M66B 2018-12-20 20:38:23 +01:00
parent fde13733d2
commit d5b59bee51
1 changed files with 2 additions and 7 deletions

View File

@ -186,13 +186,8 @@ public class EntityMessage implements Serializable {
}
return body.toString();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException ex) {
Log.e(Helper.TAG, ex + "\n" + Log.getStackTraceString(ex));
}
}
if (in != null)
in.close();
}
}