From 477543241f3f843ba7ce6ac0c74d4e39bbe5e899 Mon Sep 17 00:00:00 2001 From: Arjen Poutsma Date: Fri, 7 Nov 2008 10:22:43 +0000 Subject: [PATCH] SPR-5066 --- .../web/bind/annotation/RequestMappings.java | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 org.springframework.web.servlet/src/main/java/org/springframework/web/bind/annotation/RequestMappings.java 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 e5d4170783..0000000000 --- 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(); - -}