Skip to content

Commit

Permalink
Removed the 1.6 parser
Browse files Browse the repository at this point in the history
  • Loading branch information
systay committed Nov 12, 2012
1 parent f5f2d46 commit 5181d9c
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 913 deletions.
2 changes: 0 additions & 2 deletions cypher/src/main/scala/org/neo4j/cypher/CypherParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ class CypherParser(version: String) {

val hasVersionDefined = """(?si)^\s*cypher\s*([^\s]+)\s*(.*)""".r

val v16 = new internal.parser.v1_6.CypherParserImpl
val v17 = new internal.parser.v1_7.CypherParserImpl
val v18 = new internal.parser.v1_8.CypherParserImpl

Expand All @@ -39,7 +38,6 @@ class CypherParser(version: String) {
}

v match {
case "1.6" => v16.parse(q)
case "1.7" => v17.parse(q)
case "1.8" => v18.parse(q)
case _ => throw new SyntaxException("Versions supported are 1.6, 1.7 and 1.8")
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 5181d9c

Please sign in to comment.