Skip to content

Commit ff9476f

Browse files
committed
remove unused code
1 parent d562ca6 commit ff9476f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/main/java/technology/tabula/ObjectExtractorStreamEngine.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,13 @@
2323

2424
class ObjectExtractorStreamEngine extends PDFGraphicsStreamEngine {
2525

26-
private static final String NBSP = "\u00A0";
27-
2826
protected List<Ruling> rulings;
2927
private AffineTransform pageTransform;
3028
private boolean debugClippingPaths;
3129
private boolean extractRulingLines = true;
3230
private Logger log;
3331
private int clipWindingRule = -1;
3432
private GeneralPath currentPath = new GeneralPath();
35-
public List<Shape> clippingPaths;
3633

3734
protected ObjectExtractorStreamEngine(PDPage page) {
3835
super(page);
@@ -249,14 +246,6 @@ public Rectangle2D currentClippingPath() {
249246
return transformedClippingPath.getBounds2D();
250247
}
251248

252-
public boolean isDebugClippingPaths() {
253-
return debugClippingPaths;
254-
}
255-
256-
public void setDebugClippingPaths(boolean debugClippingPaths) {
257-
this.debugClippingPaths = debugClippingPaths;
258-
}
259-
260249
class PointComparator implements Comparator<Point2D> {
261250
@Override
262251
public int compare(Point2D o1, Point2D o2) {

0 commit comments

Comments
 (0)