dbertoni 01/06/27 11:27:03
Modified: c/src/XSLT StylesheetRoot.cpp
Log:
Don't try to catch an exception setting top-level params.
Revision Changes Path
1.45 +1 -12 xml-xalan/c/src/XSLT/StylesheetRoot.cpp
Index: StylesheetRoot.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetRoot.cpp,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- StylesheetRoot.cpp 2001/06/14 19:25:53 1.44
+++ StylesheetRoot.cpp 2001/06/27 18:27:01 1.45
@@ -205,24 +205,13 @@
executionContext.pushTime(&sourceTree);
}
- try
- {
- executionContext.resolveTopLevelParams();
- }
- // java: catch(Exception e)
- catch(...)
- {
- throw SAXException("StylesheetRoot.process error");
- }
+ executionContext.resolveTopLevelParams();
#if defined(XALAN_VQ_SPECIAL_TRACE)
QuantifyStartRecordingData();
#endif
executionContext.startDocument();
-
- // why
- //executionContext.setCurrentNode(sourceTree);
const QNameByValue theDefaultMode;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]