Fixed bug in example code.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352486 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Klute 2002-04-26 05:27:29 +00:00
parent dcc5e3518a
commit f12e7a47bd
1 changed files with 2 additions and 2 deletions

View File

@ -149,13 +149,13 @@ r.registerListener(new MyPOIFSReaderListener(),
<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)
{