Skip to content

Commit

Permalink
Make SDOGeometry constructor package accessible.
Browse files Browse the repository at this point in the history
No use to have it public since required arguments are
not public constructible
  • Loading branch information
maesenka committed Sep 17, 2022
1 parent 62c6ba0 commit 01cbd46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class SDOGeometry {
final private List<Element> elements;
final private CoordinateReferenceSystem<?> crs;

public SDOGeometry(SDOGType gtype, int srid, SDOPoint point, ElemInfo info, Ordinates ordinates) {
SDOGeometry(SDOGType gtype, int srid, SDOPoint point, ElemInfo info, Ordinates ordinates) {
this.gtype = gtype;
this.srid = srid;
this.point = point;
Expand Down

0 comments on commit 01cbd46

Please sign in to comment.