DATACMNS-1085 - Fixed typos in Javadoc.

Original pull request: #229.
This commit is contained in:
Oliver Gierke
2017-07-24 10:32:19 +02:00
parent 86945f81d1
commit d9b16d8a27
13 changed files with 32 additions and 28 deletions

View File

@@ -106,7 +106,7 @@ public class TypeFilterParser {
}
/**
* Createsa a {@link TypeFilter} instance from the given {@link Element} and {@link ClassLoader}.
* Creates a {@link TypeFilter} instance from the given {@link Element} and {@link ClassLoader}.
*
* @param element must not be {@literal null}.
* @param classLoader must not be {@literal null}.
@@ -171,8 +171,8 @@ public class TypeFilterParser {
Class<?> filterClass = classLoader.loadClass(expression);
if (!TypeFilter.class.isAssignableFrom(filterClass)) {
throw new IllegalArgumentException("Class is not assignable to [" + TypeFilter.class.getName() + "]: "
+ expression);
throw new IllegalArgumentException(
"Class is not assignable to [" + TypeFilter.class.getName() + "]: " + expression);
}
return (TypeFilter) BeanUtils.instantiateClass(filterClass);
}