Author: peterreilly
Date: Sun Aug 12 11:18:40 2007
New Revision: 565100
URL: http://svn.apache.org/viewvc?view=rev&rev=565100
Log:
merge checkstyle
Modified:
ant/core/branches/ANT_17_BRANCH/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java
Modified:
ant/core/branches/ANT_17_BRANCH/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java
URL:
http://svn.apache.org/viewvc/ant/core/branches/ANT_17_BRANCH/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java?view=diff&rev=565100&r1=565099&r2=565100
==============================================================================
---
ant/core/branches/ANT_17_BRANCH/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java
(original)
+++
ant/core/branches/ANT_17_BRANCH/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java
Sun Aug 12 11:18:40 2007
@@ -81,13 +81,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);
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]