Browse Source

Fix link in Javadoc of PassThroughFilterChain

Closes gh-30365
pull/30369/head
Kai Zander 2 years ago committed by GitHub
parent
commit
5b2aa0be81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      spring-test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java
  2. 4
      spring-web/src/testFixtures/java/org/springframework/web/testfixture/servlet/PassThroughFilterChain.java

4
spring-test/src/main/java/org/springframework/mock/web/PassThroughFilterChain.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import org.springframework.lang.Nullable; @@ -29,7 +29,7 @@ import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* Implementation of the {@link jakarta.servlet.FilterConfig} interface which
* Implementation of the {@link jakarta.servlet.FilterChain} interface which
* simply passes the call through to a given Filter/FilterChain combination
* (indicating the next Filter in the chain along with the FilterChain that it is
* supposed to work on) or to a given Servlet (indicating the end of the chain).

4
spring-web/src/testFixtures/java/org/springframework/web/testfixture/servlet/PassThroughFilterChain.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -29,7 +29,7 @@ import org.springframework.lang.Nullable; @@ -29,7 +29,7 @@ import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* Implementation of the {@link jakarta.servlet.FilterConfig} interface which
* Implementation of the {@link jakarta.servlet.FilterChain} interface which
* simply passes the call through to a given Filter/FilterChain combination
* (indicating the next Filter in the chain along with the FilterChain that it is
* supposed to work on) or to a given Servlet (indicating the end of the chain).

Loading…
Cancel
Save