From: markt Date: Mon, 9 Feb 2009 19:56:44 +0000 (+0000) Subject: Correct typo X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=989a40b1591bac47e5218290d41a0eb8269735ef;p=tomcat7.0 Correct typo git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@742710 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/realm/JAASMemoryLoginModule.java b/java/org/apache/catalina/realm/JAASMemoryLoginModule.java index 75045b625..e55e41900 100644 --- a/java/org/apache/catalina/realm/JAASMemoryLoginModule.java +++ b/java/org/apache/catalina/realm/JAASMemoryLoginModule.java @@ -197,7 +197,7 @@ public class JAASMemoryLoginModule extends MemoryRealm implements LoginModule { // Add our Principal to the Subject if needed if (!subject.getPrincipals().contains(principal)) { subject.getPrincipals().add(principal); - // Add the roles as additional sudjucts as per the contract with the + // Add the roles as additional subjects as per the contract with the // JAASRealm if (principal instanceof GenericPrincipal) { String roles[] = ((GenericPrincipal) principal).getRoles();