[Proxool-cvs] proxool/src/java/org/logicalcobwebs/proxool/configuration JAXPConfigurator.java,1.10,1
UNMAINTAINED!
Brought to you by:
billhorsman
|
From: <bre...@us...> - 2004-05-14 21:16:00
|
Update of /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/configuration In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6000/src/java/org/logicalcobwebs/proxool/configuration Modified Files: JAXPConfigurator.java Log Message: Fix type in method name Index: JAXPConfigurator.java =================================================================== RCS file: /cvsroot/proxool/proxool/src/java/org/logicalcobwebs/proxool/configuration/JAXPConfigurator.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** JAXPConfigurator.java 10 Mar 2003 23:43:15 -0000 1.10 --- JAXPConfigurator.java 14 May 2004 21:15:47 -0000 1.11 *************** *** 83,88 **** final XMLConfigurator xmlConfigurator = new XMLConfigurator(); xmlReader.setErrorHandler(xmlConfigurator); ! setSAXFeauture(xmlReader, "http://xml.org/sax/features/namespaces", NAMESPACE_AWARE); ! setSAXFeauture(xmlReader, "http://xml.org/sax/features/namespace-prefixes", !NAMESPACE_AWARE); saxParser.parse(inputSource, xmlConfigurator); } catch (ParserConfigurationException pce) { --- 83,88 ---- final XMLConfigurator xmlConfigurator = new XMLConfigurator(); xmlReader.setErrorHandler(xmlConfigurator); ! setSAXFeature(xmlReader, "http://xml.org/sax/features/namespaces", NAMESPACE_AWARE); ! setSAXFeature(xmlReader, "http://xml.org/sax/features/namespace-prefixes", !NAMESPACE_AWARE); saxParser.parse(inputSource, xmlConfigurator); } catch (ParserConfigurationException pce) { *************** *** 110,114 **** // only log warning on problems with recognition and support of features // we'll probably pull through anyway... ! private static void setSAXFeauture(XMLReader xmlReader, String feature, boolean state) { if (LOG.isDebugEnabled()) { LOG.debug("Setting sax feature: '" + feature + "'. State: " + state + "."); --- 110,114 ---- // only log warning on problems with recognition and support of features // we'll probably pull through anyway... ! private static void setSAXFeature(XMLReader xmlReader, String feature, boolean state) { if (LOG.isDebugEnabled()) { LOG.debug("Setting sax feature: '" + feature + "'. State: " + state + "."); *************** *** 127,130 **** --- 127,133 ---- Revision history: $Log$ + Revision 1.11 2004/05/14 21:15:47 brenuart + Fix type in method name + Revision 1.10 2003/03/10 23:43:15 billhorsman reapplied checkstyle that i'd inadvertently let |