Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/892#discussion_r202651724
--- Diff:
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/io/graphml/GraphMLWriter.java
---
@@ -58,13 +58,14 @@
*/
public final class GraphMLWriter implements GraphWriter {
private final XMLOutputFactory inputFactory =
XMLOutputFactory.newInstance();
- private boolean normalize = false;
+ private boolean normalize = true;
--- End diff --
I don't think we should normalize by default. We should offer the
cheapest/fastest option as the default.
---