Skip to content

Commit a44e91d

Browse files
SeasonPanPanjzheaux
authored andcommitted
fix javadoc typo
1 parent bb402a7 commit a44e91d

File tree

6 files changed

+2
-8
lines changed

6 files changed

+2
-8
lines changed

config/src/main/java/org/springframework/security/config/annotation/web/configurers/AbstractAuthenticationFilterConfigurer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,6 @@ protected final String getFailureUrl() {
380380

381381
/**
382382
* Updates the default values for authentication.
383-
* @throws Exception
384383
*/
385384
protected final void updateAuthenticationDefaults() {
386385
if (this.loginProcessingUrl == null) {

config/src/main/java/org/springframework/security/config/annotation/web/configurers/HeadersConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ public HeadersConfigurer<H> referrerPolicy(Customizer<ReferrerPolicyConfig> refe
531531
* @throws IllegalArgumentException if policyDirectives is {@code null} or empty
532532
* @since 5.1
533533
* @deprecated For removal in 7.0. Use {@link #permissionsPolicy(Customizer)} instead.
534-
* @seeObjectPostProcessorConfiguration FeaturePolicyHeaderWriter
534+
* @see ObjectPostProcessorConfiguration FeaturePolicyHeaderWriter
535535
*/
536536
@Deprecated
537537
public FeaturePolicyConfig featurePolicy(String policyDirectives) {

core/src/main/java/org/springframework/security/authentication/jaas/SecurityContextLoginModule.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ public class SecurityContextLoginModule implements LoginModule {
7171
* <code>Authentication</code>.
7272
* @return true if this method succeeded, or false if this <code>LoginModule</code>
7373
* should be ignored.
74-
* @exception LoginException if the abort fails
7574
*/
7675
@Override
7776
public boolean abort() {
@@ -87,7 +86,6 @@ public boolean abort() {
8786
* <code>Authentication</code> to the <code>Subject</code>'s principals.
8887
* @return true if this method succeeded, or false if this <code>LoginModule</code>
8988
* should be ignored.
90-
* @exception LoginException if the commit fails
9189
*/
9290
@Override
9391
public boolean commit() {
@@ -161,7 +159,6 @@ public boolean login() throws LoginException {
161159
* Log out the <code>Subject</code>.
162160
* @return true if this method succeeded, or false if this <code>LoginModule</code>
163161
* should be ignored.
164-
* @exception LoginException if the logout fails
165162
*/
166163
@Override
167164
public boolean logout() {

core/src/main/java/org/springframework/security/core/authority/mapping/MapBasedAttributes2GrantedAuthoritiesMapper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ private Collection<GrantedAuthority> getGrantedAuthorityCollection(Object value)
117117
* Convert the given value to a collection of Granted Authorities, adding the result
118118
* to the given result collection.
119119
* @param value The value to convert to a GrantedAuthority Collection
120-
* @return Collection containing the GrantedAuthority Collection
121120
*/
122121
private void addGrantedAuthorityCollection(Collection<GrantedAuthority> result, Object value) {
123122
if (value == null) {

core/src/main/java/org/springframework/security/core/parameters/AnnotationParameterNameDiscoverer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ private interface ParameterNameFactory<T extends AccessibleObject> {
180180
/**
181181
* Gets the {@link Annotation}s at a specified index
182182
* @param t
183-
* @param index
184183
* @return
185184
*/
186185
Annotation[][] findParameterAnnotations(T t);

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/authentication/AbstractSaml2AuthenticationRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ protected Builder() {
153153
/**
154154
* Creates a new Builder with relying party registration
155155
* @param registration the registration of the relying party.
156-
* @sine 5.8
156+
* @since 5.8
157157
*/
158158
protected Builder(RelyingPartyRegistration registration) {
159159
this.relyingPartyRegistrationId = registration.getRegistrationId();

0 commit comments

Comments
 (0)