neilg 2003/12/18 23:18:56
Modified: c/src/xercesc/framework/psvi XSAnnotation.cpp
Log:
remove a throw clause inserted during debugging (but should we really swallow this
exception?)
Revision Changes Path
1.8 +4 -1 xml-xerces/c/src/xercesc/framework/psvi/XSAnnotation.cpp
Index: XSAnnotation.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSAnnotation.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- XSAnnotation.cpp 15 Dec 2003 19:04:55 -0000 1.7
+++ XSAnnotation.cpp 19 Dec 2003 07:18:56 -0000 1.8
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.8 2003/12/19 07:18:56 neilg
+ * remove a throw clause inserted during debugging (but should we really swallow
this exception?)
+ *
* Revision 1.7 2003/12/15 19:04:55 neilg
* fix segfault when a writeAnnotation() method was called
*
@@ -144,7 +147,7 @@
}
catch (const XMLException&)
{
- throw;
+ // REVISIT: should we really eat this?
}
DOMNode* newElem =
futureOwner->importNode((parser->getDocument())->getDocumentElement(), true);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]