Skip to content

Commit

Permalink
#! [euphoria-core] Cleanup inmem specific classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Novotnik, Petr committed Feb 1, 2017
1 parent 3e6fc93 commit de0e610
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cz.seznam.euphoria.core.executor;
package cz.seznam.euphoria.inmem;

import cz.seznam.euphoria.core.client.graph.DAG;
import cz.seznam.euphoria.core.client.operator.Operator;

/**
* A series of transformations with single output operator.
*/
public class ExecPath {
class ExecPath {

/** A DAG of operators. */
private final DAG<Operator<?, ?>> dag;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package cz.seznam.euphoria.core.executor;
package cz.seznam.euphoria.inmem;

import cz.seznam.euphoria.core.client.dataset.Dataset;
import cz.seznam.euphoria.core.client.graph.DAG;
Expand All @@ -33,7 +33,7 @@
* some intermediate datasets. Datasets might be shared across multiple
* {@code ExecUnit}s.
*/
public class ExecUnit {
class ExecUnit {

/** All inputs to this exec unit. */
final List<Dataset<?>> inputs = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import cz.seznam.euphoria.core.client.operator.Union;
import cz.seznam.euphoria.core.client.operator.state.StorageProvider;
import cz.seznam.euphoria.core.client.util.Pair;
import cz.seznam.euphoria.core.executor.ExecUnit;
import cz.seznam.euphoria.core.executor.Executor;
import cz.seznam.euphoria.core.executor.FlowUnfolder;
import cz.seznam.euphoria.core.executor.FlowUnfolder.InputOperator;
Expand Down

0 comments on commit de0e610

Please sign in to comment.