Skip to content

Commit

Permalink
Ooops
Browse files Browse the repository at this point in the history
  • Loading branch information
systay committed Jun 8, 2011
1 parent 2adba86 commit e0d483c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.tbd.ExecutionEngine;
import org.neo4j.tbd.Projection;
import org.neo4j.tbd.ExecutionResult;
import org.neo4j.tbd.TBDParser;
import org.neo4j.tbd.SyntaxError;
import org.neo4j.tbd.commands.Query;
Expand Down Expand Up @@ -69,7 +69,7 @@ public String evaluate(String script)
try
{
Query query = parser.parse(script);
Projection result = engine.execute(query);
ExecutionResult result = engine.execute(query);

return result.toString();
} catch (SyntaxError error)
Expand Down

0 comments on commit e0d483c

Please sign in to comment.