- 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:
Rainer Klute 2004-08-31 17:59:49 +00:00
parent cdf6826011
commit 14a93bb98a
1 changed files with 1 additions and 1 deletions

View File

@ -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();