Skip to content

Commit cf2cad5

Browse files
mp911dechristophstrobl
authored andcommitted
DATAMONGO-1399 - Polishing.
Update since version to 1.10. Remove trailing whitespaces. Original pull request: #352.
1 parent fd8246b commit cf2cad5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/geo/GeoJsonPolygon.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* {@link GeoJson} representation of {@link Polygon}. Unlike {@link Polygon} the {@link GeoJsonPolygon} requires a
3030
* closed border. Which means that the first and last {@link Point} have to have same coordinate pairs.
31-
*
31+
*
3232
* @author Christoph Strobl
3333
* @since 1.7
3434
* @see http://geojson.org/geojson-spec.html#polygon
@@ -42,7 +42,7 @@ public class GeoJsonPolygon extends Polygon implements GeoJson<List<GeoJsonLineS
4242

4343
/**
4444
* Creates new {@link GeoJsonPolygon} from the given {@link Point}s.
45-
*
45+
*
4646
* @param first must not be {@literal null}.
4747
* @param second must not be {@literal null}.
4848
* @param third must not be {@literal null}.
@@ -55,7 +55,7 @@ public GeoJsonPolygon(Point first, Point second, Point third, Point fourth, fina
5555

5656
/**
5757
* Creates new {@link GeoJsonPolygon} from the given {@link Point}s.
58-
*
58+
*
5959
* @param points must not be {@literal null}.
6060
*/
6161
public GeoJsonPolygon(List<Point> points) {
@@ -73,7 +73,7 @@ public GeoJsonPolygon(List<Point> points) {
7373
* @param fourth must not be {@literal null}.
7474
* @param others can be {@literal null}.
7575
* @return new {@link GeoJsonPolygon}.
76-
* @since 1.9
76+
* @since 1.10
7777
*/
7878
public GeoJsonPolygon withInnerRing(Point first, Point second, Point third, Point fourth, final Point... others) {
7979
return withInnerRing(asList(first, second, third, fourth, others));
@@ -94,7 +94,7 @@ public GeoJsonPolygon withInnerRing(List<Point> points) {
9494
*
9595
* @param lineString must not be {@literal null}.
9696
* @return new {@link GeoJsonPolygon}.
97-
* @since 1.9
97+
* @since 1.10
9898
*/
9999
public GeoJsonPolygon withInnerRing(GeoJsonLineString lineString) {
100100

0 commit comments

Comments
 (0)