Skip to content

v3.1.0

Latest
Compare
Choose a tag to compare
@jenetics jenetics released this 06 Nov 20:54
· 1 commit to master since this release
v3.1.0
2885601

Improvements

  • #170: GPX files with invalid version number are now readable in LENIENT mode.
final GPX gpx;
try (InputStream in = new FileInputStream(resource)) {
	gpx = GPX.Reader.of(Mode.LENIENT).read(in);
}

Bugs

  • #167: Fixing a test case for Windows.