Browse Source

Setup constructors so that they actually compile.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269302 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
525c0f87f8
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      proposal/myrmidon/src/java/org/apache/myrmidon/api/DefaultTaskContext.java

+ 3
- 2
proposal/myrmidon/src/java/org/apache/myrmidon/api/DefaultTaskContext.java View File

@@ -8,6 +8,7 @@
package org.apache.myrmidon.api; package org.apache.myrmidon.api;


import java.io.File; import java.io.File;
import java.util.Map;
import org.apache.avalon.excalibur.io.FileUtil; import org.apache.avalon.excalibur.io.FileUtil;
import org.apache.avalon.excalibur.property.PropertyException; import org.apache.avalon.excalibur.property.PropertyException;
import org.apache.avalon.excalibur.property.PropertyUtil; import org.apache.avalon.excalibur.property.PropertyUtil;
@@ -28,7 +29,7 @@ public class DefaultTaskContext
*/ */
public DefaultTaskContext( final Map contextData ) public DefaultTaskContext( final Map contextData )
{ {
this( contextData );
super( contextData );
} }


/** /**
@@ -36,7 +37,7 @@ public class DefaultTaskContext
*/ */
public DefaultTaskContext() public DefaultTaskContext()
{ {
this( null );
this( (TaskContext)null );
} }


/** /**


Loading…
Cancel
Save