Constructor parameters should be final....

This commit is contained in:
Tom Vahlman 2012-02-10 17:31:33 +01:00
parent 73c02f6e0e
commit 6989e646d6

@ -17,7 +17,7 @@ public class Availability implements Serializable{
private Integer numCapable;
private final Employee supervisor;
public Availability(Employee supervisor, Long numMatched, Integer numCapable, ProjectClass projectClass) {
public Availability(final Employee supervisor,final Long numMatched,final Integer numCapable,final ProjectClass projectClass) {
this.supervisor = supervisor;
this.numMatched = numMatched;
this.numCapable = numCapable;