Author: peterreilly Date: Sun Aug 12 11:17:35 2007 New Revision: 565097 URL: http://svn.apache.org/viewvc?view=rev&rev=565097 Log: checkstyle
Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/Equals.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java?view=diff&rev=565097&r1=565096&r2=565097 ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java Sun Aug 12 11:17:35 2007 @@ -80,13 +80,17 @@ try { new DeweyDecimal(atLeast); } catch (NumberFormatException e) { - throw new BuildException("The 'atleast' attribute is not a Dewey Decimal eg 1.1.0 : " + atLeast); + throw new BuildException( + "The 'atleast' attribute is not a Dewey Decimal eg 1.1.0 : " + + atLeast); } } else { try { new DeweyDecimal(exactly); } catch (NumberFormatException e) { - throw new BuildException("The 'exactly' attribute is not a Dewey Decimal eg 1.1.0 : " + exactly); + throw new BuildException( + "The 'exactly' attribute is not a Dewey Decimal eg 1.1.0 : " + + exactly); } } } Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java?view=diff&rev=565097&r1=565096&r2=565097 ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/ConditionBase.java Sun Aug 12 11:17:35 2007 @@ -20,9 +20,6 @@ import java.util.Enumeration; import java.util.Vector; -import org.apache.tools.ant.Project; -import org.apache.tools.ant.DynamicElement; -import org.apache.tools.ant.ComponentHelper; import org.apache.tools.ant.ProjectComponent; import org.apache.tools.ant.taskdefs.Available; import org.apache.tools.ant.taskdefs.Checksum; Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/Equals.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/Equals.java?view=diff&rev=565097&r1=565096&r2=565097 ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/Equals.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/Equals.java Sun Aug 12 11:17:35 2007 @@ -35,7 +35,7 @@ /** * Set the first argument - * @param arg1 + * @param arg1 the first argument. * @since Ant 1.8 */ public void setArg1(Object arg1) { @@ -54,7 +54,7 @@ /** * Set the second argument - * @param arg2 + * @param arg2 the second argument. * @since Ant 1.8 */ public void setArg2(Object arg2) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]