Commit 4da4d843 authored by Riegel's avatar Riegel
Browse files

Fix: Add skipping of generated XML report files

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 3 additions and 0 deletions
+3 -0
......@@ -40,6 +40,9 @@ public class CityGmlZipArchive implements Serializable {
continue;
}
if (ze.getName().endsWith(".gml") || ze.getName().endsWith(".xml")) {
if (ze.getName().endsWith("_report.xml")) {
continue;
}
archiveEntries.add(CityGmlZipEntry.register(ze, cgmlArchive));
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment