Author: jens
Date: Thu Oct 23 18:43:20 2014
New Revision: 1633915
URL: http://svn.apache.org/r1633915
Log:
fix a missing space in the error message
Modified:
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/TypeValidator.java
Modified:
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/TypeValidator.java
URL:
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/TypeValidator.java?rev=1633915&r1=1633914&r2=1633915&view=diff
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/TypeValidator.java
(original)
+++
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-support/src/main/java/org/apache/chemistry/opencmis/server/support/TypeValidator.java
Thu Oct 23 18:43:20 2014
@@ -240,7 +240,7 @@ public final class TypeValidator {
// check max length
if (maxLen >= 0 && len >= 0 && maxLen < len) {
throw new CmisConstraintException("For property with id " +
propDef.getId() + " the length of " + len
- + "is bigger than the maximum allowed length " +
maxLen);
+ + " is bigger than the maximum allowed length " +
maxLen);
}
}
}