diff options
author | Adrian Kummerländer | 2014-05-30 14:38:07 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-05-30 14:38:07 +0200 |
commit | 484143667bd6885236b679a8f54dad3c512ea2dd (patch) | |
tree | 5393e4987fc8ca3f54aa1c59cf0d2b47a554b6c7 | |
parent | e402a092a5e2fbf624947896b013d405efb75049 (diff) | |
download | InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.tar InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.tar.gz InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.tar.bz2 InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.tar.lz InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.tar.xz InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.tar.zst InputXSLT-484143667bd6885236b679a8f54dad3c512ea2dd.zip |
Removed custom XSLException patch as it is solved in XALANC-744
* the problem is described and solved in issue XALANC-744
** https://issues.apache.org/jira/browse/XALANC-744
** so there is no reason for providing a custom patch
-rw-r--r-- | patch/XSLException.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/patch/XSLException.patch b/patch/XSLException.patch deleted file mode 100644 index a67f265..0000000 --- a/patch/XSLException.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- xalan-c-1.11_original/c/src/xalanc/PlatformSupport/XSLException.cpp 2014-05-29 22:27:20.366792350 +0200 -+++ xalan-c-1.11_patched/c/src/xalanc/PlatformSupport/XSLException.cpp 2014-05-29 22:56:01.136185453 +0200 -@@ -41,11 +41,7 @@ - const Locator* theLocator) : - m_memoryManager(theManager), - m_message(theMessage, theManager), -- m_uri( -- XalanLocator::getSystemId( -- theLocator, -- &s_dummy), -- theManager), -+ m_uri(theLocator == 0 ? s_dummy : theLocator->getSystemId()), - m_lineNumber(XalanLocator::getLineNumber(theLocator)), - m_columnNumber(XalanLocator::getColumnNumber(theLocator)), - m_formatted(false) |