| Severity | 1 |
|---|---|
| Enabled | yes |
| Waivable | |
| Violation |
finally {
try {
r.close();
} catch (IOException e) {
logger.error(FILE_ERROR_TXT, e);
throw new HammurapiTestCasesException(e);
}
return 0;
}
|
| Fix |
finally {
try {
r.close();
} catch (IOException e) {
logger.error(FILE_ERROR_TXT, e);
throw new HammurapiTestCasesException(e);
}
}
|