Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.15.1</version>
<version>1.17.0</version>
</dependency>

<!-- Testing -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
public final class MvtReaderTest {

private static final double DOUBLE_DELTA = 1e-10;

private static final int NUMBER_OF_DIMENSIONS = 2;

private static final int SRID = 0;

@Test
Expand Down Expand Up @@ -151,7 +150,7 @@ private static JtsMvt loadMvt(String file,
private static GeometryFactory createGeometryFactory() {
final PrecisionModel precisionModel = new PrecisionModel();
final PackedCoordinateSequenceFactory coordinateSequenceFactory =
new PackedCoordinateSequenceFactory(PackedCoordinateSequenceFactory.DOUBLE, NUMBER_OF_DIMENSIONS);
new PackedCoordinateSequenceFactory(PackedCoordinateSequenceFactory.DOUBLE);
return new GeometryFactory(precisionModel, SRID, coordinateSequenceFactory);
}
}