(double latitude, double longitude)
| 29 | private double latitude; |
| 30 | |
| 31 | public Point(double latitude, double longitude) { |
| 32 | this.latitude = latitude; |
| 33 | this.longitude = longitude; |
| 34 | } |
| 35 | |
| 36 | public Point(SpawnPointOuterClass.SpawnPoint spawnpoint) { |
| 37 | this.latitude = spawnpoint.getLatitude(); |
nothing calls this directly
no test coverage detected