Author: chris.laprun(a)jboss.com
Date: 2006-12-04 18:03:01 -0500 (Mon, 04 Dec 2006)
New Revision: 5757
Modified:
trunk/common/src/main/org/jboss/portal/common/util/ParameterValidation.java
Log:
Fixed bug in output.
Modified: trunk/common/src/main/org/jboss/portal/common/util/ParameterValidation.java
===================================================================
--- trunk/common/src/main/org/jboss/portal/common/util/ParameterValidation.java 2006-12-04
18:16:39 UTC (rev 5756)
+++ trunk/common/src/main/org/jboss/portal/common/util/ParameterValidation.java 2006-12-04
23:03:01 UTC (rev 5757)
@@ -33,7 +33,7 @@
{
if (isNullOrEmpty(valueToCheck))
{
- throw new IllegalArgumentException(contextName != null ? contextName + "
r" : "R" + "equires a non-null, non-empty " + valueName);
+ throw new IllegalArgumentException((contextName != null ? contextName + "
r" : "R") + "equires a non-null, non-empty " + valueName);
}
}
Show replies by date