diff --git a/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMappings.java b/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMappings.java deleted file mode 100644 index e5d41707839..00000000000 --- a/org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMappings.java +++ /dev/null @@ -1,20 +0,0 @@ -package org.springframework.web.bind.annotation; - -import java.lang.annotation.Target; -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Documented; - -/** - * @author Arjen Poutsma - * @since 3.0 - */ -@Target({ElementType.METHOD, ElementType.TYPE}) -@Retention(RetentionPolicy.RUNTIME) -@Documented -public @interface RequestMappings { - - RequestMapping[] annotations(); - -}