()
| 144 | |
| 145 | /// {@inheritDoc} |
| 146 | @Override |
| 147 | public int hashCode() { |
| 148 | int hash = 5; |
| 149 | hash = 17 * hash + (int) (Double.doubleToLongBits(this.longitude) ^ (Double.doubleToLongBits(this.longitude) >>> 32)); |
| 150 | hash = 17 * hash + (int) (Double.doubleToLongBits(this.latitude) ^ (Double.doubleToLongBits(this.latitude) >>> 32)); |
| 151 | return hash; |
| 152 | } |
| 153 | |
| 154 | /// Returns true if this is a projected Coordinate |
| 155 | /// |
nothing calls this directly
no test coverage detected