blob: 959c4bfc56a1f8513928b8a9fb5b880da6d4331f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.core;
import org.apache.xerces.parsers.SAXParser;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
/**
* Utility to create {@link XMLReader} instances. Uses Xerces if available to ensure XML 1.1 parsing works correctly.
*
* @author Steffen Pingel
*/
public class XmlReaderUtil {
public static XMLReader createXmlReader() throws SAXException {
// use Xerces to ensure XML 1.1 is handled correctly
return new SAXParser();
}
private XmlReaderUtil() {
// clients must not instantiate class
}
}