
|
If you were logged in you would be able to see more operations.
|
|
|
|
Change this pattern:
obj = in.readObject();
in.close();
to:
try {
obj = in.readObject();
} finally {
in.close();
}
Also, close the InputStream in getMapFromProperties()
|
|
Description
|
Change this pattern:
obj = in.readObject();
in.close();
to:
try {
obj = in.readObject();
} finally {
in.close();
}
Also, close the InputStream in getMapFromProperties() |
Show » |
| There are no comments yet on this issue.
|
|