From 68ffa0fecea4f8200d961be239509796dcdcf43e Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Thu, 27 Sep 2018 13:18:28 +0900 Subject: [PATCH] Add a missing space in Secured.value() signature --- .../org/springframework/security/access/annotation/Secured.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/access/annotation/Secured.java b/core/src/main/java/org/springframework/security/access/annotation/Secured.java index 7aa3b7027f..c7b4589e95 100644 --- a/core/src/main/java/org/springframework/security/access/annotation/Secured.java +++ b/core/src/main/java/org/springframework/security/access/annotation/Secured.java @@ -55,5 +55,5 @@ public @interface Secured { * * @return String[] The secure method attributes */ - public String[]value(); + public String[] value(); }