Discovered a Date
setter that only does the typical assignment, yet has a throws ParseException
for what seems like no good reason. No Date
construction is happening in the body of the setter. Just assignment.
This is on a Hibernate entity. The setters field is annotated with @Column as nullable, insertable, and updateable. Not sure if that matters.
Is this obviously wrong and should be fixed by removing the throws
or is there more research to do before deciding to remove this?