(Integer id,
String firstName,
String lastName,
String email,
String gender,
Integer age)
| 10 | private final Integer age; |
| 11 | |
| 12 | public Person(Integer id, |
| 13 | String firstName, |
| 14 | String lastName, |
| 15 | String email, |
| 16 | String gender, |
| 17 | Integer age) { |
| 18 | this.id = id; |
| 19 | this.firstName = firstName; |
| 20 | this.lastName = lastName; |
| 21 | this.email = email; |
| 22 | this.gender = gender; |
| 23 | this.age = age; |
| 24 | } |
| 25 | |
| 26 | public Integer getId() { |
| 27 | return id; |
nothing calls this directly
no outgoing calls
no test coverage detected