Undo [Bug 7763] in case users use ICU outside the parser.


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174187 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/doc/releases.xml b/doc/releases.xml
index e1f6bc7..d65eee6 100644
--- a/doc/releases.xml
+++ b/doc/releases.xml
@@ -209,13 +209,6 @@
     </tr>
 
     <tr>
-        <td>2002-08-14</td>
-        <td>Maxim Volkonovsky</td>
-        <td>[Bug 7763] Final memory cleanup for ICU transcoder.
-        </td>
-    </tr>
-
-    <tr>
         <td>2002-08-13</td>
         <td>PeiYong Zhang</td>
         <td>[Bug 9442] minInclusive factet validation alters value.
diff --git a/src/xercesc/util/Transcoders/ICU/ICUTransService.cpp b/src/xercesc/util/Transcoders/ICU/ICUTransService.cpp
index 7832088..d9c6f65 100644
--- a/src/xercesc/util/Transcoders/ICU/ICUTransService.cpp
+++ b/src/xercesc/util/Transcoders/ICU/ICUTransService.cpp
@@ -170,10 +170,16 @@
 
 ICUTransService::~ICUTransService()
 {
+    /*
+     * commented out the following clean up code
+     * in case users use ICU outside of the parser
+     * if we clean up here, users' code may crash
+     *
     #if (U_ICU_VERSION_MAJOR_NUM >= 2)
         // release all lasily allocated data
         u_cleanup();
     #endif
+    */
 }