Browse Source

new helper method; not yet fed back into classes that currently use it (Csharp, Ilasm)

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272357 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 23 years ago
parent
commit
1b5b18e3db
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java

+ 5
- 0
src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java View File

@@ -204,6 +204,11 @@ public class NetCommand {
}
}

public void addArgument(String argument1,String argument2) {
if (argument2 != null && argument2.length() != 0) {
commandLine.createArgument().setValue(argument1+argument2);
}
}

/**
* set up the command sequence..


Loading…
Cancel
Save