diff options
author | PJ Fanning <fanningpj@apache.org> | 2020-11-13 18:02:41 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2020-11-13 18:02:41 +0000 |
commit | cc21b7c3059a6a1a42e69dccb2ad09893d315b5c (patch) | |
tree | d35fc115f7aac16b4ac8beb86072f2aada72be68 /src/integrationtest | |
parent | 00b9048d59e8800a59560425d11bbe13d44a60a6 (diff) | |
download | poi-cc21b7c3059a6a1a42e69dccb2ad09893d315b5c.tar.gz poi-cc21b7c3059a6a1a42e69dccb2ad09893d315b5c.zip |
remove stray import
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1883394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest')
-rw-r--r-- | src/integrationtest/org/apache/poi/stress/HeapDump.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/integrationtest/org/apache/poi/stress/HeapDump.java b/src/integrationtest/org/apache/poi/stress/HeapDump.java index 098230cad1..7928975f56 100644 --- a/src/integrationtest/org/apache/poi/stress/HeapDump.java +++ b/src/integrationtest/org/apache/poi/stress/HeapDump.java @@ -22,7 +22,6 @@ import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import com.sun.management.HotSpotDiagnosticMXBean; -import org.apache.poi.ss.formula.eval.NotImplementedException; import org.apache.poi.util.SuppressForbidden; @SuppressForbidden("class only exists for manual tests in XSSFFileHandler") @@ -95,4 +94,4 @@ public class HeapDump { Method dumpHeap = hotspotMBean.getClass().getMethod("dumpHeap", String.class, boolean.class); dumpHeap.invoke(hotspotMBean, fileName, live); } -}
\ No newline at end of file +} |