Skip to content

Commit

Permalink
Fix checkstyle errors with @deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
Kehrlann committed Aug 19, 2024
1 parent 912062d commit 1215081
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ public Saml2LoginConfigurer<B> authenticationRequestResolver(
* @return the {@link Saml2LoginConfigurer} for further configuration
* @since 6.0
*/
@Deprecated
public Saml2LoginConfigurer<B> authenticationRequestUri(String authenticationRequestUri) {
Assert.state(authenticationRequestUri.contains("{registrationId}"),
"authenticationRequestUri must contain {registrationId} path variable");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ public static String getRelativeName(String fullDn, Context baseCtx) throws Nami
/**
* Gets the full dn of a name by prepending the name of the context it is relative to.
* If the name already contains the base name, it is returned unaltered.
* @deprecated Use {@link #getFullDn(LdapName, Context)}
*/
public static DistinguishedName getFullDn(DistinguishedName dn, Context baseCtx) throws NamingException {
DistinguishedName baseDn = new DistinguishedName(baseCtx.getNameInNamespace());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ public boolean userExists(String username) {
* Creates a DN from a group name.
* @param group the name of the group
* @return the DN of the corresponding group, including the groupSearchBase
* @deprecated
*/
protected DistinguishedName buildGroupDn(String group) {
DistinguishedName dn = new DistinguishedName(this.groupSearchBase);
Expand Down

0 comments on commit 1215081

Please sign in to comment.