Constructor parameters should be final....
This commit is contained in:
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user