@spmallette one tiny suggestion to avoid creation of unnecessary arrays would
be:
```
if (arguments.length > 0) {
final Object[] argumentsCopy = new Object[arguments.length];
for (int i = 0; i < arguments.length; i++) {
argumentsCopy[i] = translateObject(arguments[i]);
}
}
```[ Full content available at: https://github.com/apache/tinkerpop/pull/1062 ] This message was relayed via gitbox.apache.org for [email protected]
