aboutsummaryrefslogtreecommitdiffstats
path: root/poi-examples
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2023-02-14 15:07:55 +0000
committerPJ Fanning <fanningpj@apache.org>2023-02-14 15:07:55 +0000
commit54fc06be818845918c1266d90c633e7ba68b07ea (patch)
treefee240fb9fd75222132a912181e34c3ac978f74c /poi-examples
parentd07d8e42b9d961a86a9adc09226bfb86e5b2b211 (diff)
downloadpoi-54fc06be818845918c1266d90c633e7ba68b07ea.tar.gz
poi-54fc06be818845918c1266d90c633e7ba68b07ea.zip
revert accidental change
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1907655 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-examples')
-rw-r--r--poi-examples/src/main/java/org/apache/poi/examples/hpsf/ReadCustomPropertySets.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/poi-examples/src/main/java/org/apache/poi/examples/hpsf/ReadCustomPropertySets.java b/poi-examples/src/main/java/org/apache/poi/examples/hpsf/ReadCustomPropertySets.java
index 187f434b94..ca8cba1ce9 100644
--- a/poi-examples/src/main/java/org/apache/poi/examples/hpsf/ReadCustomPropertySets.java
+++ b/poi-examples/src/main/java/org/apache/poi/examples/hpsf/ReadCustomPropertySets.java
@@ -29,7 +29,6 @@ import org.apache.poi.hpsf.PropertySetFactory;
import org.apache.poi.hpsf.Section;
import org.apache.poi.poifs.eventfilesystem.POIFSReader;
import org.apache.poi.poifs.eventfilesystem.POIFSReaderEvent;
-import org.apache.poi.util.ExceptionUtil;
/**
* <p>Sample application showing how to read a document's custom property set.
@@ -67,9 +66,6 @@ public final class ReadCustomPropertySets {
out("No property set stream: \"" + streamName + "\"");
return;
} catch (Exception ex) {
- if (ExceptionUtil.isFatal(ex)) {
- ExceptionUtil.rethrow(ex);
- }
throw new HPSFRuntimeException("Property set stream \"" + streamName + "\": " + ex);
}