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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]