From 8cc08c55d2523a67bb94224bcefddfc2a635caa2 Mon Sep 17 00:00:00 2001 From: Eric Schoen Date: Tue, 3 Jul 2018 17:22:09 -0500 Subject: [PATCH] Make RectangleSpatialIndex public --- pom.xml | 2 +- src/main/java/technology/tabula/RectangleSpatialIndex.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 27e77f04..f2a0293e 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 technology.tabula tabula - 1.0.2 + 1.0.3 Tabula Extract tables from PDF files http://github.com/tabulapdf/tabula-java diff --git a/src/main/java/technology/tabula/RectangleSpatialIndex.java b/src/main/java/technology/tabula/RectangleSpatialIndex.java index 2c8533df..a39114a2 100644 --- a/src/main/java/technology/tabula/RectangleSpatialIndex.java +++ b/src/main/java/technology/tabula/RectangleSpatialIndex.java @@ -6,7 +6,7 @@ import org.locationtech.jts.geom.Envelope; import org.locationtech.jts.index.strtree.STRtree; -class RectangleSpatialIndex { +public class RectangleSpatialIndex { private final STRtree si = new STRtree();