My team has quite a huge amount of code. Recently I have found some objects that weren't closed properly.
How can i find all the instances that are not closed or not inside a try-with-resources
block?
Some objects like Statement
, ResultSet
are not showing warning messages for it, even.
Is there an extension tool for showing all this occurrences?
I'm using Eclipse.