Open monperrus opened 6 years ago
Repairnator just gave two identical patch:
+ if (documentation.getId() == null) { + return Boolean.TRUE; + } ... + if (documentation.getId() == null) { + return true; + }
I suggest to remove Boolean.TRUE and Boolean.FALSE from the variables.
Boolean.TRUE
Boolean.FALSE
Repairnator just gave two identical patch:
I suggest to remove
Boolean.TRUE
andBoolean.FALSE
from the variables.