This is an automated email from the ASF dual-hosted git repository.

okram pushed a commit to branch tp4
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/tp4 by this push:
     new 6ed80f2  minor nothings....taking a break.
6ed80f2 is described below

commit 6ed80f252d5328d9a34896381c8104c0bdb522bc
Author: Marko A. Rodriguez <okramma...@gmail.com>
AuthorDate: Sun Mar 17 14:01:58 2019 -0600

    minor nothings....taking a break.
---
 .../main/java/org/apache/tinkerpop/machine/bytecode/Compilation.java  | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/java/core/src/main/java/org/apache/tinkerpop/machine/bytecode/Compilation.java
 
b/java/core/src/main/java/org/apache/tinkerpop/machine/bytecode/Compilation.java
index 02c7221..83b487f 100644
--- 
a/java/core/src/main/java/org/apache/tinkerpop/machine/bytecode/Compilation.java
+++ 
b/java/core/src/main/java/org/apache/tinkerpop/machine/bytecode/Compilation.java
@@ -18,7 +18,6 @@
  */
 package org.apache.tinkerpop.machine.bytecode;
 
-import org.apache.tinkerpop.machine.coefficient.Coefficient;
 import org.apache.tinkerpop.machine.function.CFunction;
 import org.apache.tinkerpop.machine.processor.Processor;
 import org.apache.tinkerpop.machine.processor.ProcessorFactory;
@@ -39,15 +38,12 @@ public final class Compilation<C, S, E> implements 
Serializable {
     private final List<CFunction<C>> functions;
     private final ProcessorFactory processorFactory;
     private final TraverserFactory<C> traverserFactory;
-    private final Coefficient<C> unity;
     private transient Processor<C, S, E> processor;
 
     public Compilation(final Bytecode<C> bytecode) {
         BytecodeUtil.strategize(bytecode);
         this.processorFactory = 
BytecodeUtil.getProcessorFactory(bytecode).get();
         this.traverserFactory = 
BytecodeUtil.getTraverserFactory(bytecode).get();
-        this.unity = BytecodeUtil.getCoefficient(bytecode).get().clone();
-        this.unity.unity();
         this.functions = BytecodeUtil.compile(bytecode);
     }
 

Reply via email to