applied shawn's patch and tested http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10935
PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352781 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d9cc9ddfe1
commit
eba0c7652d
@ -1710,7 +1710,7 @@ public class Sheet
|
||||
{
|
||||
ci = ( ColumnInfoRecord ) columnSizes.get(k);
|
||||
if ((ci.getFirstColumn() >= column)
|
||||
&& (ci.getLastColumn() <= column))
|
||||
&& (column <= ci.getLastColumn()))
|
||||
{
|
||||
break;
|
||||
}
|
||||
@ -1749,7 +1749,7 @@ public class Sheet
|
||||
{
|
||||
ci = ( ColumnInfoRecord ) columnSizes.get(k);
|
||||
if ((ci.getFirstColumn() >= column)
|
||||
&& (ci.getLastColumn() <= column))
|
||||
&& (column <= ci.getLastColumn()))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user