Skip to content

Commit 113da38

Browse files
Minor change in one of the factory constructors, now invoking the main constructor instead of the other factory constructor
1 parent f44b33e commit 113da38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/crs_coordinate.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class CrsCoordinate {
5151
double xLongitude
5252
) {
5353
CrsProjection crsProjection = CrsProjectionFactory.getCrsProjectionByEpsgNumber(epsgNumber);
54-
return CrsCoordinate.createCoordinate(crsProjection, yLatitude, xLongitude);
54+
return CrsCoordinate._privateConstructor(crsProjection, yLatitude, xLongitude);
5555
}
5656

5757
/// Factory constructor for creating an instance.

0 commit comments

Comments
 (0)