update paragraph rebuilding for case when empty papx [n; n) happens at the end of file
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1160589 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
419d505619
commit
4e49b3b13c
@ -208,10 +208,12 @@ public class PAPBinTable
|
||||
final int startInclusive = lastParStart;
|
||||
final int endExclusive = charIndex + 1;
|
||||
|
||||
boolean broken = false;
|
||||
List<PAPX> papxs = new LinkedList<PAPX>();
|
||||
for ( int papxIndex = lastPapxIndex; papxIndex < oldPapxSortedByEndPos
|
||||
.size(); papxIndex++ )
|
||||
{
|
||||
broken = false;
|
||||
PAPX papx = oldPapxSortedByEndPos.get( papxIndex );
|
||||
|
||||
assert startInclusive == 0
|
||||
@ -221,11 +223,16 @@ public class PAPBinTable
|
||||
if ( papx.getEnd() - 1 > charIndex )
|
||||
{
|
||||
lastPapxIndex = papxIndex;
|
||||
broken = true;
|
||||
break;
|
||||
}
|
||||
|
||||
papxs.add( papx );
|
||||
}
|
||||
if ( !broken )
|
||||
{
|
||||
lastPapxIndex = oldPapxSortedByEndPos.size() - 1;
|
||||
}
|
||||
|
||||
if ( papxs.size() == 0 )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user