Skip to content

Commit

Permalink
De-virtualize EntityById types
Browse files Browse the repository at this point in the history
  • Loading branch information
fickludd committed May 9, 2019
1 parent 91242a2 commit d653f38
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -19,16 +19,16 @@
*/ */
package org.neo4j.cypher.internal.runtime; package org.neo4j.cypher.internal.runtime;


import org.neo4j.values.virtual.VirtualNodeValue; import org.neo4j.values.virtual.NodeValue;
import org.neo4j.values.virtual.VirtualRelationshipValue; import org.neo4j.values.virtual.RelationshipValue;


/** /**
* Entity lookup operations. * Entity lookup operations.
*/ */
public interface EntityById public interface EntityById
{ {
VirtualNodeValue nodeById( long id ); NodeValue nodeById( long id );


VirtualRelationshipValue relationshipById( long id ); RelationshipValue relationshipById( long id );


} }

0 comments on commit d653f38

Please sign in to comment.