You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2005/06/08 04:41:43 UTC

svn commit: r189497 - /xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp

Author: jberry
Date: Tue Jun  7 19:41:42 2005
New Revision: 189497

URL: http://svn.apache.org/viewcvs?rev=189497&view=rev
Log:
Eliminate extraneous returns in void functions; Thanks Greg Franks.

Modified:
    xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp

Modified: xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp?rev=189497&r1=189496&r2=189497&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp (original)
+++ xerces/c/branches/jberry/3.0-unstable/src/xercesc/util/PlatformUtils.cpp Tue Jun  7 19:41:42 2005
@@ -552,7 +552,7 @@
     if (!fgFileMgr)
 		ThrowXMLwithMemMgr(XMLPlatformUtilsException, XMLExcepts::CPtr_PointerIsZero, memmgr);
 
-	return fgFileMgr->close(theFile, memmgr);
+	fgFileMgr->close(theFile, memmgr);
 }
 
 void
@@ -562,7 +562,7 @@
     if (!fgFileMgr)
 		ThrowXMLwithMemMgr(XMLPlatformUtilsException, XMLExcepts::CPtr_PointerIsZero, memmgr);
 
-	return fgFileMgr->reset(theFile, memmgr);
+	fgFileMgr->reset(theFile, memmgr);
 }
 
 



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