https://bz.apache.org/bugzilla/show_bug.cgi?id=64013

--- Comment #2 from George Stanchev <stanc...@hotmail.com> ---
Yeah I forgot to mention that I used Java 8u232 for the build. The fix is
trivial of course. I added the javadoc elements below and it finished building

   /**
     * @deprecated This will be removed in Tomcat 10. Use
     *             {@link #getPrincipal(GSSName, GSSCredential)} instead.
     * @param username The user name
     * @param gssCredential the GSS credential of the principal
     * @return the Principal associated with the given user name.
     */
    @Deprecated
    protected Principal getPrincipal(String username,
            GSSCredential gssCredential) {
        Principal p = getPrincipal(username);

        if (p instanceof GenericPrincipal) {
            ((GenericPrincipal) p).setGssCredential(gssCredential);
        }

        return p;
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to