Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzido committed Jun 24, 2019
1 parent d562ca6 commit ff9476f
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/main/java/technology/tabula/ObjectExtractorStreamEngine.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,13 @@

class ObjectExtractorStreamEngine extends PDFGraphicsStreamEngine {

private static final String NBSP = "\u00A0";

protected List<Ruling> rulings;
private AffineTransform pageTransform;
private boolean debugClippingPaths;
private boolean extractRulingLines = true;
private Logger log;
private int clipWindingRule = -1;
private GeneralPath currentPath = new GeneralPath();
public List<Shape> clippingPaths;

protected ObjectExtractorStreamEngine(PDPage page) {
super(page);
Expand Down Expand Up @@ -249,14 +246,6 @@ public Rectangle2D currentClippingPath() {
return transformedClippingPath.getBounds2D();
}

public boolean isDebugClippingPaths() {
return debugClippingPaths;
}

public void setDebugClippingPaths(boolean debugClippingPaths) {
this.debugClippingPaths = debugClippingPaths;
}

class PointComparator implements Comparator<Point2D> {
@Override
public int compare(Point2D o1, Point2D o2) {
Expand Down

0 comments on commit ff9476f

Please sign in to comment.