Skip to content

Commit 48cc43f

Browse files
committed
changes review
1 parent d9c65d3 commit 48cc43f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

server-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>com.google.code.gson</groupId>
114114
<artifactId>gson</artifactId>
115-
<version>2.11.0</version>
115+
<version>2.13.1</version>
116116
<scope>test</scope>
117117
</dependency>
118118
<dependency>

server-plugin/src/main/java/org/neo4j/gis/spatial/rtree/RTreeIndex.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,6 @@ private void partition(Transaction tx, Node indexNode, List<NodeWithEnvelope> no
584584

585585
//recurse on each partition
586586
for (List<NodeWithEnvelope> partition : partitions) {
587-
System.out.println("partition = " + partition);
588587
Node newIndexNode = tx.createNode();
589588
if (partition.size() > 1) {
590589
partition(tx, newIndexNode, partition, depth + 1, loadingFactor);

0 commit comments

Comments
 (0)