]> source.dussan.org Git - poi.git/commitdiff
fix constructor after its delegated now
authorAndreas Beeker <kiwiwings@apache.org>
Sun, 16 Dec 2018 18:40:47 +0000 (18:40 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Sun, 16 Dec 2018 18:40:47 +0000 (18:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849041 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/xdgf/geom/Dimension2dDouble.java

index 2363abb939ae027420d8b8d64ed5b17e68ae9520..a7d8210abcfc1235f3fa4303b0e303ee0fdfd063 100644 (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);
+    }
 }