You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by pe...@apache.org on 2003/07/25 18:23:15 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs ConditionTask.java Concat.java

peterreilly    2003/07/25 09:23:15

  Modified:    src/main/org/apache/tools/ant/taskdefs ConditionTask.java
                        Concat.java
  Log:
  checkstyle
  
  Revision  Changes    Path
  1.16      +5 -4      ant/src/main/org/apache/tools/ant/taskdefs/ConditionTask.java
  
  Index: ConditionTask.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/ConditionTask.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- ConditionTask.java	19 Jul 2003 08:10:59 -0000	1.15
  +++ ConditionTask.java	25 Jul 2003 16:23:15 -0000	1.16
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -83,7 +83,7 @@
   
       /**
        * The name of the property to set. Required.
  -     *
  +     * @param p the name of the property
        * @since Ant 1.4
        */
       public void setProperty(String p) {
  @@ -93,7 +93,7 @@
       /**
        * The value for the property to set, if condition evaluates to true.
        * Defaults to "true".
  -     *
  +     * @param v the value of the property
        * @since Ant 1.4
        */
       public void setValue(String v) {
  @@ -104,6 +104,7 @@
        * See whether our nested condition holds and set the property.
        *
        * @since Ant 1.4
  +     * @exception BuildException if an error occurs
        */
       public void execute() throws BuildException {
           if (countConditions() > 1) {
  
  
  
  1.25      +1 -1      ant/src/main/org/apache/tools/ant/taskdefs/Concat.java
  
  Index: Concat.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Concat.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- Concat.java	25 Jul 2003 08:59:39 -0000	1.24
  +++ Concat.java	25 Jul 2003 16:23:15 -0000	1.25
  @@ -101,7 +101,7 @@
    * @author Peter Reilly
    */
   public class Concat extends Task {
  -    
  +
       // The size of buffers to be used
       private static final int BUFFER_SIZE = 8192;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org