All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.pmd.CloseResource.html Maven / Gradle / Ivy

There is a newer version: 5.1
Show newest version
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