o committing work from Trygve because he can't yet commit himself.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-04-20 19:02:15 +00:00
parent fe5c4741ab
commit 03267ea4be
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
@ -493,12 +492,12 @@ public class Bootstrapper
public void endElement( String uri, String localName, String rawName )
throws SAXException
{
if ( rawName.equals( "parent" ) )
// support both v3 <extend> and v4 <parent>
if ( rawName.equals( "extend" ) || rawName.equals( "parent" ) )
{
File f;
// support both v3 <extend> and v4 <parent>
if( getBodyText() == null )
if( rawName.equals( "extend" ) )
{
String extend = interpolate( getBodyText(), properties );