klute       02/04/25 22:27:29

  Modified:    src/documentation/xdocs/hpsf how-to.xml
  Log:
  Fixed bug in example code.
  
  Revision  Changes    Path
  1.6       +3 -3      jakarta-poi/src/documentation/xdocs/hpsf/how-to.xml
  
  Index: how-to.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/documentation/xdocs/hpsf/how-to.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- how-to.xml        6 Apr 2002 13:36:06 -0000       1.5
  +++ how-to.xml        26 Apr 2002 05:27:29 -0000      1.6
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN"
   "../dtd/document-v11.dtd">
  -<!-- $Id: how-to.xml,v 1.5 2002/04/06 13:36:06 nicolaken Exp $ -->
  +<!-- $Id: how-to.xml,v 1.6 2002/04/26 05:27:29 klute Exp $ -->
   
   <document>
    <header>
  @@ -149,13 +149,13 @@
        <source>
   static class MyPOIFSReaderListener implements POIFSReaderListener
   {
  -    public void processPOIFSReaderEvent(POIFSReaderEvent e)
  +    public void processPOIFSReaderEvent(POIFSReaderEvent event)
       {
           SummaryInformation si = null;
           try
           {
               si = (SummaryInformation)
  -                 PropertySetFactory.create(e.getStream());
  +                 PropertySetFactory.create(event.getStream());
           }
           catch (Exception ex)
           {
  
  
  


Reply via email to