Bug 53914 - TableRow#getTopBorder() return bottom's border

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1405752 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2012-11-05 11:49:03 +00:00
parent f1d17f6890
commit e95f5e8333
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@
<changes>
<release version="3.9-beta1" date="2012-??-??">
<action dev="poi-developers" type="fix">53914 - TableRow#getTopBorder() return bottom's border</action>
<action dev="poi-developers" type="fix">53282 - Avoid exception when parsing OPC relationships with non-breaking spaces</action>
<action dev="poi-developers" type="fix">54016 - Avoid exception when parsing workbooks with DConRefRecord in row aggregate</action>
<action dev="poi-developers" type="fix">54008 - Fixed Ant build to support build directories with blanks</action>

View File

@ -110,7 +110,7 @@ public final class TableRow extends Range
public BorderCode getTopBorder()
{
return _tprops.getBrcBottom();
return _tprops.getBrcTop();
}
public BorderCode getVerticalBorder()