fix constructor after its delegated now

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849041 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2018-12-16 18:40:47 +00:00
parent e896d921a4
commit 8d51a39edd
1 changed files with 6 additions and 0 deletions

View File

@ -25,4 +25,10 @@ import org.apache.poi.util.Removal;
@Deprecated
@Removal(version = "5.0.0")
public class Dimension2dDouble extends org.apache.poi.util.Dimension2DDouble {
public Dimension2dDouble() {
}
public Dimension2dDouble(double width, double height) {
super(width, height);
}
}