Browse Source

No need to pass project in anymore

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270593 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
d26ed2207d
2 changed files with 2 additions and 4 deletions
  1. +1
    -2
      proposal/myrmidon/src/main/org/apache/tools/ant/types/CommandlineJava.java
  2. +1
    -2
      proposal/myrmidon/src/todo/org/apache/tools/ant/types/CommandlineJava.java

+ 1
- 2
proposal/myrmidon/src/main/org/apache/tools/ant/types/CommandlineJava.java View File

@@ -9,7 +9,6 @@ package org.apache.tools.ant.types;


import org.apache.myrmidon.api.TaskException; import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.framework.Os; import org.apache.myrmidon.framework.Os;
import org.apache.tools.ant.Project;


/** /**
* A representation of a Java command line that is nothing more than a composite * A representation of a Java command line that is nothing more than a composite
@@ -190,7 +189,7 @@ public class CommandlineJava implements Cloneable
return javaCommand.createArgument(); return javaCommand.createArgument();
} }


public Path createClasspath( Project p )
public Path createClasspath()
{ {
if( classpath == null ) if( classpath == null )
{ {


+ 1
- 2
proposal/myrmidon/src/todo/org/apache/tools/ant/types/CommandlineJava.java View File

@@ -9,7 +9,6 @@ package org.apache.tools.ant.types;


import org.apache.myrmidon.api.TaskException; import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.framework.Os; import org.apache.myrmidon.framework.Os;
import org.apache.tools.ant.Project;


/** /**
* A representation of a Java command line that is nothing more than a composite * A representation of a Java command line that is nothing more than a composite
@@ -190,7 +189,7 @@ public class CommandlineJava implements Cloneable
return javaCommand.createArgument(); return javaCommand.createArgument();
} }


public Path createClasspath( Project p )
public Path createClasspath()
{ {
if( classpath == null ) if( classpath == null )
{ {


Loading…
Cancel
Save