Skip to content

fix javadoc typo #12884

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,6 @@ protected final String getFailureUrl() {

/**
* Updates the default values for authentication.
* @throws Exception
*/
protected final void updateAuthenticationDefaults() {
if (this.loginProcessingUrl == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ public HeadersConfigurer<H> referrerPolicy(Customizer<ReferrerPolicyConfig> refe
* @throws IllegalArgumentException if policyDirectives is {@code null} or empty
* @since 5.1
* @deprecated For removal in 7.0. Use {@link #permissionsPolicy(Customizer)} instead.
* @seeObjectPostProcessorConfiguration FeaturePolicyHeaderWriter
* @see ObjectPostProcessorConfiguration FeaturePolicyHeaderWriter
*/
@Deprecated
public FeaturePolicyConfig featurePolicy(String policyDirectives) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public class SecurityContextLoginModule implements LoginModule {
* <code>Authentication</code>.
* @return true if this method succeeded, or false if this <code>LoginModule</code>
* should be ignored.
* @exception LoginException if the abort fails
*/
@Override
public boolean abort() {
Expand All @@ -87,7 +86,6 @@ public boolean abort() {
* <code>Authentication</code> to the <code>Subject</code>'s principals.
* @return true if this method succeeded, or false if this <code>LoginModule</code>
* should be ignored.
* @exception LoginException if the commit fails
*/
@Override
public boolean commit() {
Expand Down Expand Up @@ -161,7 +159,6 @@ public boolean login() throws LoginException {
* Log out the <code>Subject</code>.
* @return true if this method succeeded, or false if this <code>LoginModule</code>
* should be ignored.
* @exception LoginException if the logout fails
*/
@Override
public boolean logout() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ private Collection<GrantedAuthority> getGrantedAuthorityCollection(Object value)
* Convert the given value to a collection of Granted Authorities, adding the result
* to the given result collection.
* @param value The value to convert to a GrantedAuthority Collection
* @return Collection containing the GrantedAuthority Collection
*/
private void addGrantedAuthorityCollection(Collection<GrantedAuthority> result, Object value) {
if (value == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ private interface ParameterNameFactory<T extends AccessibleObject> {
/**
* Gets the {@link Annotation}s at a specified index
* @param t
* @param index
* @return
*/
Annotation[][] findParameterAnnotations(T t);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ protected Builder() {
/**
* Creates a new Builder with relying party registration
* @param registration the registration of the relying party.
* @sine 5.8
* @since 5.8
*/
protected Builder(RelyingPartyRegistration registration) {
this.relyingPartyRegistrationId = registration.getRegistrationId();
Expand Down