stevel      02/04/10 23:48:20

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/dotnet
                        NetCommand.java
  Log:
  new helper method; not yet fed back into classes that currently use it 
(Csharp, Ilasm)
  
  Revision  Changes    Path
  1.11      +5 -0      
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java
  
  Index: NetCommand.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/dotnet/NetCommand.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- NetCommand.java   10 Apr 2002 00:39:20 -0000      1.10
  +++ NetCommand.java   11 Apr 2002 06:48:20 -0000      1.11
  @@ -204,6 +204,11 @@
           }
       }
   
  +    public void addArgument(String argument1,String argument2) {
  +        if (argument2 != null && argument2.length() != 0) {
  +            commandLine.createArgument().setValue(argument1+argument2);
  +        }
  +    }    
   
       /**
        *  set up the command sequence..
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to