From 1aad4da6b64e26557d98b8ddde58037a2db32303 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 2 Dec 2014 14:18:22 +0100 Subject: [PATCH] Remove compiler warning --- .../config/annotation/WebMvcConfigurationSupportTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-webmvc/src/test/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupportTests.java b/spring-webmvc/src/test/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupportTests.java index bc9afca609..af0e3a9dd0 100644 --- a/spring-webmvc/src/test/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupportTests.java +++ b/spring-webmvc/src/test/java/org/springframework/web/servlet/config/annotation/WebMvcConfigurationSupportTests.java @@ -370,6 +370,7 @@ public class WebMvcConfigurationSupportTests { @ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "exception.user.exists") + @SuppressWarnings("serial") public static class UserAlreadyExistsException extends RuntimeException { }