Victor Williams Stafusa da Silva
Victor Williams Stafusa da Silva
This is a due to https://github.com/spotbugs/spotbugs/issues/527, I guess.
Can you post the code of those classes?
I understand that there is an opinion that `Optional` is an abomination. There are people on the other hand, that consider that the `null` itself is an abomination (aka the...
@delanym I also only get this when using find-sec-bugs.
On windows, playsound doesn't work correctly. As far as I can tell, it works the first time you run it, but fails from the second time on.
I think that the `TypedQuery` interface would benefit from having this: ```java public default Optional getOptionalResult() { try { return Optional.of(getSingleResult()); } catch (NoResultException e) { return Optional.empty(); } }...
BTW, as the `Query` interface itself, I think that direct uses of it should be considered something largely as deprecated and migration to `TypedQuery`, `StoredProcedureQuery` or to queries from criteria...
Is the idea to separate the mapping annotations on one side (along with some enums) and the `EntityManager`, `Query` and friends, criteria, metamodel and SPI in the other side (possibly...
Ok. Let's see if I can do something interesting here.