()
| 8 | private String zipCode; |
| 9 | |
| 10 | public Address() { |
| 11 | // This constructor is only added for deserialization purposes |
| 12 | // It should not be called directly |
| 13 | } |
| 14 | |
| 15 | public Address(String street, String city, String state, String zipCode) { |
| 16 | this.street = street; |
nothing calls this directly
no outgoing calls
no test coverage detected