mirror of https://github.com/apache/poi.git
Bug 61584: Fix XDGFPage variable typo causing crash
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1812240 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a66725fa94
commit
c2db4ae5fb
|
@ -99,7 +99,7 @@ public class XDGFPage {
|
||||||
if (xoffcell != null)
|
if (xoffcell != null)
|
||||||
xoffset = Double.parseDouble(xoffcell.getValue());
|
xoffset = Double.parseDouble(xoffcell.getValue());
|
||||||
|
|
||||||
if (xoffcell != null)
|
if (yoffcell != null)
|
||||||
yoffset = Double.parseDouble(yoffcell.getValue());
|
yoffset = Double.parseDouble(yoffcell.getValue());
|
||||||
|
|
||||||
return new Point2D.Double(xoffset, yoffset);
|
return new Point2D.Double(xoffset, yoffset);
|
||||||
|
|
Loading…
Reference in New Issue