You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by kl...@apache.org on 2004/08/31 19:59:49 UTC

cvs commit: jakarta-poi/src/java/org/apache/poi/hpsf PropertySet.java

klute       2004/08/31 10:59:49

  Modified:    src/java/org/apache/poi/hpsf PropertySet.java
  Log:
  - Bug 30953 fixed: Method toString() now delivers all sections instead of the first one multiple times.
  
  Revision  Changes    Path
  1.19      +2 -2      jakarta-poi/src/java/org/apache/poi/hpsf/PropertySet.java
  
  Index: PropertySet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/PropertySet.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- PropertySet.java	15 Aug 2004 13:43:35 -0000	1.18
  +++ PropertySet.java	31 Aug 2004 17:59:49 -0000	1.19
  @@ -676,7 +676,7 @@
           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();
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: poi-dev-help@jakarta.apache.org