blob: b2d39f260cbdd5ae5809eede39c2c3c0e89f4161 [file] [log] [blame]
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.ant.configuration;
import org.xml.sax.SAXException;
/**
* Fork of Avalon code that will be folded back when they get equivelent facilties.
* Note that the code is different package so it should not cause any issues.
*
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public class ConfigurationBuilder
extends org.apache.avalon.DefaultConfigurationBuilder
{
protected org.apache.avalon.SAXConfigurationHandler getHandler()
{
return new SAXConfigurationHandler();
}
}