From 8133ab013b2a3de889e1ad446cddd9b79bc01fbf Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Sun, 16 Dec 2018 18:40:47 +0000 Subject: [PATCH] fix constructor after its delegated now git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1849041 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/poi/xdgf/geom/Dimension2dDouble.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ooxml/java/org/apache/poi/xdgf/geom/Dimension2dDouble.java b/src/ooxml/java/org/apache/poi/xdgf/geom/Dimension2dDouble.java index 2363abb939..a7d8210abc 100644 --- a/src/ooxml/java/org/apache/poi/xdgf/geom/Dimension2dDouble.java +++ b/src/ooxml/java/org/apache/poi/xdgf/geom/Dimension2dDouble.java @@ -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); + } } -- 2.39.5