From 9678a33637385bd14680f830961c3be0c0c341cd Mon Sep 17 00:00:00 2001 From: Rainer Klute Date: Tue, 31 Aug 2004 17:59:49 +0000 Subject: [PATCH] - 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 --- src/java/org/apache/poi/hpsf/PropertySet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/poi/hpsf/PropertySet.java b/src/java/org/apache/poi/hpsf/PropertySet.java index 8095ab19a7..134df3564b 100644 --- a/src/java/org/apache/poi/hpsf/PropertySet.java +++ b/src/java/org/apache/poi/hpsf/PropertySet.java @@ -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(); -- 2.39.5