You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2001/09/21 00:49:10 UTC

cvs commit: xml-xalan/c/src/XSLT XSLTEngineImpl.hpp XSLTEngineImpl.cpp NamespacesHandler.cpp ElemForEach.hpp ElemForEach.cpp ElemApplyTemplates.cpp

dbertoni    01/09/20 15:49:10

  Modified:    c/src/XSLT XSLTEngineImpl.hpp XSLTEngineImpl.cpp
                        NamespacesHandler.cpp ElemForEach.hpp
                        ElemForEach.cpp ElemApplyTemplates.cpp
  Log:
  Removed and/or commented out some unused parameters.
  
  Revision  Changes    Path
  1.75      +0 -1      xml-xalan/c/src/XSLT/XSLTEngineImpl.hpp
  
  Index: XSLTEngineImpl.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.hpp,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- XSLTEngineImpl.hpp	2001/09/14 20:49:43	1.74
  +++ XSLTEngineImpl.hpp	2001/09/20 22:49:09	1.75
  @@ -1480,7 +1480,6 @@
   	 */
   	void
   	copyAttributesToAttList(
  -			const Stylesheet*	stylesheetTree,
   			const XalanNode&	node,
   			AttributeListImpl&	attList);
   
  
  
  
  1.119     +0 -3      xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
  
  Index: XSLTEngineImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
  retrieving revision 1.118
  retrieving revision 1.119
  diff -u -r1.118 -r1.119
  --- XSLTEngineImpl.cpp	2001/09/18 16:27:53	1.118
  +++ XSLTEngineImpl.cpp	2001/09/20 22:49:10	1.119
  @@ -2318,7 +2318,6 @@
   		if(shouldCloneAttributes == true)
   		{
   			copyAttributesToAttList(
  -									m_stylesheetRoot,
   									node,
   									getPendingAttributesImpl());
   
  @@ -2872,12 +2871,10 @@
   
   void
   XSLTEngineImpl::copyAttributesToAttList(
  -			const Stylesheet* 	stylesheetTree,
   			const XalanNode& 	node,
   			AttributeListImpl&	attList)
   {
   	assert(m_stylesheetRoot != 0);
  -	assert(stylesheetTree != 0);
   
   	const XalanNamedNodeMap* const	attributes =
   		node.getAttributes();
  
  
  
  1.15      +1 -1      xml-xalan/c/src/XSLT/NamespacesHandler.cpp
  
  Index: NamespacesHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/NamespacesHandler.cpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- NamespacesHandler.cpp	2001/09/18 16:29:43	1.14
  +++ NamespacesHandler.cpp	2001/09/20 22:49:10	1.15
  @@ -91,7 +91,7 @@
   
   
   NamespacesHandler::NamespacesHandler(
  -			const NamespacesHandler&	stylesheetNamespacesHandler,
  +			const NamespacesHandler&	/* stylesheetNamespacesHandler */,
   			const NamespacesStackType&	theCurrentNamespaces,
   			const XalanDOMString&		theXSLTNamespaceURI) :
   	m_excludedResultPrefixes(),
  
  
  
  1.12      +0 -2      xml-xalan/c/src/XSLT/ElemForEach.hpp
  
  Index: ElemForEach.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemForEach.hpp,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ElemForEach.hpp	2001/06/06 21:55:21	1.11
  +++ ElemForEach.hpp	2001/09/20 22:49:10	1.12
  @@ -136,7 +136,6 @@
   	 * 
   	 * @param constructionContext context for construction of object
   	 * @param stylesheetTree      stylesheet containing element
  -	 * @param atts                list of attributes for element
   	 * @param lineNumber			line number in document
   	 * @param columnNumber			column number in document
   	 * @param xslToken             an integer representing the type of instance.
  @@ -144,7 +143,6 @@
   	ElemForEach(
   			StylesheetConstructionContext&	constructionContext,
   			Stylesheet&						stylesheetTree,
  -			const AttributeList&			atts,
   			int								lineNumber,
   			int								columnNumber,
   			int								xslToken);
  
  
  
  1.19      +0 -1      xml-xalan/c/src/XSLT/ElemForEach.cpp
  
  Index: ElemForEach.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemForEach.cpp,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- ElemForEach.cpp	2001/09/19 21:20:46	1.18
  +++ ElemForEach.cpp	2001/09/20 22:49:10	1.19
  @@ -129,7 +129,6 @@
   ElemForEach::ElemForEach(
   			StylesheetConstructionContext&	constructionContext,
   			Stylesheet&						stylesheetTree,
  -			const AttributeList&			atts,
   			int								lineNumber,
   			int								columnNumber,
   			int								xslToken) :
  
  
  
  1.21      +0 -1      xml-xalan/c/src/XSLT/ElemApplyTemplates.cpp
  
  Index: ElemApplyTemplates.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemApplyTemplates.cpp,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- ElemApplyTemplates.cpp	2001/08/13 17:08:52	1.20
  +++ ElemApplyTemplates.cpp	2001/09/20 22:49:10	1.21
  @@ -79,7 +79,6 @@
   			int								columnNumber) :
   	ElemForEach(constructionContext,
   				stylesheetTree,
  -				atts,
   				lineNumber,
   				columnNumber,
   				Constants::ELEMNAME_APPLY_TEMPLATES),
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org