]> source.dussan.org Git - poi.git/commitdiff
- Bug 30953 fixed: Method toString() now delivers all sections instead of the first...
authorRainer Klute <klute@apache.org>
Tue, 31 Aug 2004 17:59:49 +0000 (17:59 +0000)
committerRainer Klute <klute@apache.org>
Tue, 31 Aug 2004 17:59:49 +0000 (17:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353592 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hpsf/PropertySet.java

index 8095ab19a76c284c4c6c321061fc387cc246fff7..134df3564b099edbcafca286968970ebf79f589e 100644 (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();