org.sonar.l10n.pmd.CloseResource.html Maven / Gradle / Ivy
Ensure that resources (like Connection, Statement, and ResultSet objects) are always closed after use. It does this by looking for code patterned like :
Connection c = openConnection();
try {
// do stuff, and maybe catch something
} finally {
c.close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy