Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/855#discussion_r184028279
--- Diff:
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/TraversalStrategies.java
---
@@ -63,6 +63,8 @@
*/
public interface TraversalStrategies extends Serializable, Cloneable {
+ static Set<Class> LOADED = new HashSet<>();
--- End diff --
ha - i was so excited that this changed worked i didn't bother to think too
hard about what i was doing. good suggestions in both cases - i've made those
changes now. thanks
---