(int personID)
| 16 | } |
| 17 | |
| 18 | public Person getPersonWithID(int personID) { |
| 19 | Integer machineID = personToMachineMap.get(personID); |
| 20 | if (machineID == null) { |
| 21 | return null; |
| 22 | } |
| 23 | Machine machine = getMachineWithId(machineID); |
| 24 | if (machine == null) { |
| 25 | return null; |
| 26 | } |
| 27 | return machine.getPersonWithID(personID); |
| 28 | } |
| 29 | } |
nothing calls this directly
no test coverage detected