Skip to content

Commit

Permalink
Rename package to not conflict with imports of java.util
Browse files Browse the repository at this point in the history
  • Loading branch information
Mats-SX committed Feb 28, 2017
1 parent 62005d5 commit 837169d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Expand Up @@ -17,7 +17,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.neo4j.cypher.internal.compiler.v3_2.util;
package org.neo4j.cypher.internal.compiler.v3_2.common;

import java.util.Arrays;
import java.util.Comparator;
Expand Down
Expand Up @@ -21,7 +21,7 @@ package org.neo4j.cypher.internal.compiler.v3_2

import org.neo4j.cypher.internal.compiler.v3_2.pipes.QueryState
import org.neo4j.cypher.internal.compiler.v3_2.spi.{NodeIdWrapper, RelationshipIdWrapper}
import org.neo4j.cypher.internal.compiler.v3_2.util.CypherOrderability
import org.neo4j.cypher.internal.compiler.v3_2.common.CypherOrderability
import org.neo4j.graphdb.{Node, Relationship}

import scala.collection.JavaConverters._
Expand Down
Expand Up @@ -20,7 +20,7 @@
package org.neo4j.cypher.internal.compiler.v3_2

import java.io.PrintWriter
import java.{util => javaUtil}
import java.util
import java.util.Collections

import org.neo4j.cypher.internal.compiler.v3_2.executionplan.{InternalExecutionResult, InternalQueryType}
Expand All @@ -35,9 +35,9 @@ case class ExplainExecutionResult(columns: List[String],
notifications: Set[InternalNotification])
extends InternalExecutionResult {

def javaIterator: ResourceIterator[javaUtil.Map[String, Any]] = new EmptyResourceIterator()
def javaIterator: ResourceIterator[util.Map[String, Any]] = new EmptyResourceIterator()
def columnAs[T](column: String) = Iterator.empty
def javaColumns: javaUtil.List[String] = Collections.emptyList()
def javaColumns: util.List[String] = Collections.emptyList()

def queryStatistics() = InternalQueryStatistics()

Expand Down
Expand Up @@ -17,7 +17,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.neo4j.cypher.internal.compiler.v3_2.util;
package org.neo4j.cypher.internal.compiler.v3_2.common;

import org.junit.Rule;
import org.junit.Test;
Expand Down
Expand Up @@ -26,7 +26,7 @@ import org.neo4j.cypher.internal.codegen.CompiledEquivalenceUtils
import org.neo4j.cypher.internal.compiled_runtime.v3_2.codegen.CodeGenContext
import org.neo4j.cypher.internal.compiled_runtime.v3_2.codegen.ir.expressions.{CodeGenType, ReferenceType, RepresentationType}
import org.neo4j.cypher.internal.compiled_runtime.v3_2.codegen.spi._
import org.neo4j.cypher.internal.compiler.v3_2.util.CypherOrderability
import org.neo4j.cypher.internal.compiler.v3_2.common.CypherOrderability
import org.neo4j.cypher.internal.frontend.v3_2.helpers._
import org.neo4j.cypher.internal.frontend.v3_2.symbols

Expand Down

0 comments on commit 837169d

Please sign in to comment.