* so we would need to change it a bit.
* Let's not bother, then, since this works well for now.
*/
for (Annotation annotation : annotations) {
if (annotation.annotationType().isAssignableFrom(JsonView.class)) {
JsonView jsonView = (JsonView) annotation;
Class<?>[] views = jsonView.value();
if (views.length > 1) {
StringBuilder s = new StringBuilder("Multiple @JsonView's can not be used on a JAX-RS method. Got ");
s.append(views.length).append(" views: ");
for (int i = 0; i < views.length; i++) {
if (i > 0) {