Author: mbenson Date: Tue Jul 17 11:53:36 2007 New Revision: 557024 URL: http://svn.apache.org/viewvc?view=rev&rev=557024 Log: fmt/refac
Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/IsSet.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/IsSet.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/IsSet.java?view=diff&rev=557024&r1=557023&r2=557024 ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/IsSet.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/IsSet.java Tue Jul 17 11:53:36 2007 @@ -15,7 +15,6 @@ * limitations under the License. * */ - package org.apache.tools.ant.taskdefs.condition; import org.apache.tools.ant.BuildException; @@ -44,10 +43,8 @@ */ public boolean eval() throws BuildException { if (property == null) { - throw new BuildException("No property specified for isset " - + "condition"); + throw new BuildException("No property specified for isset " + "condition"); } - return getProject().getProperty(property) != null; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]