mirror of https://github.com/apache/poi.git
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:
parent
e896d921a4
commit
8d51a39edd
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue