From: Nick Burch Date: Fri, 16 Oct 2009 13:37:13 +0000 (+0000) Subject: From bug #47999 - avoid un-needed call to the JVM Garbage Collector when working... X-Git-Tag: REL_3_6~105 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a53bf58238e5fbb438489ae266ed8b5d311e059b;p=poi.git From bug #47999 - avoid un-needed call to the JVM Garbage Collector when working on OOXML OPC Packages git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@825890 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/documentation/content/xdocs/status.xml b/src/documentation/content/xdocs/status.xml index fc951bf2b9..dac810ede6 100644 --- a/src/documentation/content/xdocs/status.xml +++ b/src/documentation/content/xdocs/status.xml @@ -33,6 +33,7 @@ + 47999 - avoid un-needed call to the JVM Garbage Collector when working on OOXML OPC Packages 47922 - added example HSMF application that converts a .msg file to text and extracts attachments 47903 - added Ant target to compile scratchpad examples 47839 - improved API for OOXML custom properties diff --git a/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java b/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java index 0f53bc4021..2c0ae83d31 100644 --- a/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java +++ b/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java @@ -374,9 +374,6 @@ public abstract class OPCPackage implements RelationshipSource { // Clear this.contentTypeManager.clearAll(); - - // Call the garbage collector - Runtime.getRuntime().gc(); } /**