You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2009/10/16 15:37:13 UTC

svn commit: r825890 - in /poi/trunk/src: documentation/content/xdocs/status.xml ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java

Author: nick
Date: Fri Oct 16 13:37:13 2009
New Revision: 825890

URL: http://svn.apache.org/viewvc?rev=825890&view=rev
Log:
>From bug #47999 - avoid un-needed call to the JVM Garbage Collector when working on OOXML OPC Packages

Modified:
    poi/trunk/src/documentation/content/xdocs/status.xml
    poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java

Modified: poi/trunk/src/documentation/content/xdocs/status.xml
URL: http://svn.apache.org/viewvc/poi/trunk/src/documentation/content/xdocs/status.xml?rev=825890&r1=825889&r2=825890&view=diff
==============================================================================
--- poi/trunk/src/documentation/content/xdocs/status.xml (original)
+++ poi/trunk/src/documentation/content/xdocs/status.xml Fri Oct 16 13:37:13 2009
@@ -33,6 +33,7 @@
 
     <changes>
         <release version="3.6-beta1" date="2009-??-??">
+           <action dev="POI-DEVELOPERS" type="fix">47999 - avoid un-needed call to the JVM Garbage Collector when working on OOXML OPC Packages</action>
            <action dev="POI-DEVELOPERS" type="add">47922 - added example HSMF application that converts a .msg file to text and extracts attachments</action>
            <action dev="POI-DEVELOPERS" type="add">47903 - added Ant target to compile scratchpad examples</action>
            <action dev="POI-DEVELOPERS" type="add">47839 - improved API for OOXML custom properties</action>

Modified: poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java?rev=825890&r1=825889&r2=825890&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java Fri Oct 16 13:37:13 2009
@@ -374,9 +374,6 @@
 
 		// Clear
 		this.contentTypeManager.clearAll();
-
-		// Call the garbage collector
-		Runtime.getRuntime().gc();
 	}
 
 	/**



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org