Skip to content

Commit 7924138

Browse files
author
Zhen
committed
Fix after review
1 parent db568ca commit 7924138

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

driver/src/main/java/org/neo4j/driver/internal/InternalPoint3D.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ public class InternalPoint3D implements Point
2929
private final double y;
3030
private final double z;
3131

32-
public InternalPoint3D( int srid, double x, double y )
33-
{
34-
this( srid, x, y, Double.NaN );
35-
}
36-
3732
public InternalPoint3D( int srid, double x, double y, double z )
3833
{
3934
this.srid = srid;

driver/src/main/java/org/neo4j/driver/v1/types/Point.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
/**
2525
* Represents a single point in a particular coordinate reference system.
2626
* <p>
27-
* Value that represents a point can be created using {@link Values#point(int, double, double)} method.
27+
* Value that represents a point can be created using {@link Values#point(int, double, double)}
28+
* or {@link Values#point(int, double, double, double)} method.
2829
*/
2930
@Immutable
3031

0 commit comments

Comments
 (0)