- Bug 30953 fixed: Method toString() now delivers all sections instead of the first one multiple times.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353592 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cdf6826011
commit
14a93bb98a
@ -676,7 +676,7 @@ public class PropertySet
|
||||
b.append(", sections: [\n");
|
||||
final List sections = getSections();
|
||||
for (int i = 0; i < sectionCount; i++)
|
||||
b.append(((Section) sections.get(0)).toString());
|
||||
b.append(((Section) sections.get(i)).toString());
|
||||
b.append(']');
|
||||
b.append(']');
|
||||
return b.toString();
|
||||
|
Loading…
Reference in New Issue
Block a user