File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
main/java/com/github/nramc/dev/journey/api/geojson
test/java/com/github/nramc/dev/journey/api/geojson Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 44import com .github .nramc .dev .journey .api .geojson .types .GeoJsonType ;
55import com .github .nramc .dev .journey .api .geojson .types .Position ;
66import lombok .Getter ;
7+ import lombok .ToString ;
78
89@ Getter
10+ @ ToString
911public final class Point extends Geometry {
1012 private final Position coordinates ;
1113
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ void testDeserialization_withLongitudeAndLatitudeAndAltitude() throws IOExceptio
6363 { "type": "Point" }"""
6464
6565 })
66- void testDeserialization_withInvalidCoordinates (String jsonString ) throws IOException {
66+ void testDeserialization_withInvalidCoordinates (String jsonString ) {
6767 Assertions .assertThrows (Exception .class , () -> jacksonTester .parseObject (jsonString ));
6868 }
6969
You can’t perform that action at this time.
0 commit comments