saguziel / Kryptose

A password manager
2 stars 0 forks source link

We should use try-with-resources whenever appropriate. #28

Closed jnshi closed 9 years ago

jnshi commented 9 years ago

example:

try (FileReader fr = new FileReader(fileName)) { fr.read(); // do stuff } catch (IOException) { // stuff }

@yt336 @saguziel @AMarcedone