spmallette commented on code in PR #3456:
URL: https://github.com/apache/tinkerpop/pull/3456#discussion_r3422739816
##########
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/translator/DotNetTranslateVisitor.java:
##########
@@ -46,12 +46,20 @@
* </ul>
*/
public class DotNetTranslateVisitor extends AbstractTranslateVisitor {
+
+ private final boolean parameterize;
+
public DotNetTranslateVisitor() {
this("g");
}
public DotNetTranslateVisitor(final String graphTraversalSourceName) {
+ this(graphTraversalSourceName, false);
+ }
+
+ public DotNetTranslateVisitor(final String graphTraversalSourceName, final
boolean parameterize) {
Review Comment:
This is the only visitor that needs this "parameterize" - it's weird enough
that i think the constructors need javadoc to explain
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]