diff options
author | Rainer Klute <klute@apache.org> | 2004-08-31 17:59:49 +0000 |
---|---|---|
committer | Rainer Klute <klute@apache.org> | 2004-08-31 17:59:49 +0000 |
commit | 9678a33637385bd14680f830961c3be0c0c341cd (patch) | |
tree | af21ac87af112e8f4dd56a2f4026ab32e783a1eb /src/java/org/apache/poi/hpsf | |
parent | 5af32a61ae9f5288c98ad5d43cd8733f0acfa0e0 (diff) | |
download | poi-9678a33637385bd14680f830961c3be0c0c341cd.tar.gz poi-9678a33637385bd14680f830961c3be0c0c341cd.zip |
- 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
Diffstat (limited to 'src/java/org/apache/poi/hpsf')
-rw-r--r-- | src/java/org/apache/poi/hpsf/PropertySet.java | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |