wrap line after 140 chars

This commit is contained in:
Simon Willnauer 2016-03-14 14:51:43 +01:00
parent 9f382da5d3
commit 0ebcef0bb4
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@ public class PutMappingRequest extends AcknowledgedRequest<PutMappingRequest> im
validationException = addValidationError("mapping source is empty", validationException);
}
if (concreteIndex != null && (indices != null && indices.length > 0)) {
validationException = addValidationError("either concreteIndices or unresolved indices can be set concrete: [" + concreteIndex + "] and indices: " + indices , validationException);
validationException = addValidationError("either concreteIndices or unresolved indices can be set concrete: [" + concreteIndex
+ "] and indices: " + indices , validationException);
}
return validationException;
}