]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8748 fix typo in UnauthorizedException message 2079/head
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Thu, 18 May 2017 14:55:28 +0000 (16:55 +0200)
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Fri, 19 May 2017 11:47:23 +0000 (13:47 +0200)
server/sonar-server/src/main/java/org/sonar/server/user/ThreadLocalUserSession.java

index 25069b05ebef5f8ad3049ede63d4851c002223dc..d27f4b02381387b43fe850f2ff72fda163047157 100644 (file)
@@ -40,7 +40,7 @@ public class ThreadLocalUserSession implements UserSession {
     if (session != null) {
       return session;
     }
-    throw new UnauthorizedException("User is not authenticate");
+    throw new UnauthorizedException("User is not authenticated");
   }
 
   public void set(UserSession session) {