Just a Java programmer
I just found my own anti-pattern regarding the try-with-resources statements.
Whenever I encountered code like this.
try (InputStream is = getSome()) {}
With my following result type,
@Datapublic class Some { ... private List<Sting>…