cklein05 commented on a change in pull request #463: URL: https://github.com/apache/tomcat/pull/463#discussion_r783200198
########## File path: java/org/apache/catalina/realm/GenericPrincipal.java ########## @@ -283,10 +294,16 @@ public boolean hasRole(String role) { @Override public String toString() { StringBuilder sb = new StringBuilder("GenericPrincipal["); + boolean first = true; sb.append(this.name); sb.append('('); for (String role : roles) { - sb.append(role).append(','); + if (first) { + first = false; + } else { + sb.append(','); + } + sb.append(role); Review comment: Will remove change. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org