From 1d0d79773773a00bee1bf7cb81c6d7d5a9776a9f Mon Sep 17 00:00:00 2001 From: Giorgio Gallo Date: Thu, 14 Sep 2017 18:47:02 +0200 Subject: [PATCH] removed deprecation from Page.getRotation() as it is used in the ruby webapp --- src/main/java/technology/tabula/Page.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/technology/tabula/Page.java b/src/main/java/technology/tabula/Page.java index 491eaf7b..25f1baef 100644 --- a/src/main/java/technology/tabula/Page.java +++ b/src/main/java/technology/tabula/Page.java @@ -121,8 +121,7 @@ public List getText(Rectangle area) { return this.getText(new Rectangle(top, left, right - left, bottom - top)); } - /** @deprecated with no replacement */ - @Deprecated public Integer getRotation() { + public Integer getRotation() { return rotation; }