diff --git a/src/documentation/xdocs/hpsf/how-to.xml b/src/documentation/xdocs/hpsf/how-to.xml index 1a737254d..8447b638e 100644 --- a/src/documentation/xdocs/hpsf/how-to.xml +++ b/src/documentation/xdocs/hpsf/how-to.xml @@ -149,13 +149,13 @@ r.registerListener(new MyPOIFSReaderListener(), 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) {