Add a couple of TODOs
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 7 Sep 2009 12:39:42 +0000 (12:39 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 7 Sep 2009 12:39:42 +0000 (12:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@812114 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/realm/JNDIRealm.java

index 4aed81a..d5ddf8b 100644 (file)
@@ -1021,6 +1021,7 @@ public class JNDIRealm extends RealmBase {
                             List<String> roles = getRoles(context, user);
                             if (containerLog.isDebugEnabled()) {
                                 Iterator<String> it = roles.iterator();
+                                // TODO: Use a single log message
                                 while (it.hasNext()) {
                                     containerLog.debug("Found role: " + it.next());
                                 }
@@ -1054,6 +1055,7 @@ public class JNDIRealm extends RealmBase {
             List<String> roles = getRoles(context, user);
             if (containerLog.isDebugEnabled()) {
                 Iterator<String> it = roles.iterator();
+                // TODO: Use a single log message
                 while (it.hasNext()) {
                     containerLog.debug("Found role: " + it.next());
                 }