DATAREST-655 - Fixed type in exception message for parameter checks of ParameterMetadata.

This commit is contained in:
Oliver Gierke
2015-08-21 16:00:16 +02:00
parent 06b6b266db
commit 9280a4e4b6

View File

@@ -39,7 +39,7 @@ public final class ParameterMetadata {
this.name = parameter.getParameterName();
Assert.hasText(name, "Parameter must not be null or empty!");
Assert.hasText(name, "Parameter name must not be null or empty!");
Assert.hasText(baseRel, "Method rel must not be null!");
ResourceDescription fallback = TypedResourceDescription.defaultFor(baseRel.concat(".").concat(name),