Skip to content

Commit 060b37c

Browse files
committed
Fix typo in MockFilterChain
1 parent 64d939b commit 060b37c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

spring-orm/src/test/java/org/springframework/mock/web/MockFilterChain.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2009 the original author or authors.
2+
* Copyright 2002-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,15 +23,15 @@
2323
import org.springframework.util.Assert;
2424

2525
/**
26-
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
26+
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
2727
*
2828
* <p>Used for testing the web framework; also useful for testing
2929
* custom {@link javax.servlet.Filter} implementations.
3030
*
3131
* @author Juergen Hoeller
3232
* @since 2.0.3
33-
* @see org.springframework.mock.web.MockFilterConfig
34-
* @see org.springframework.mock.web.PassThroughFilterChain
33+
* @see MockFilterConfig
34+
* @see PassThroughFilterChain
3535
*/
3636
public class MockFilterChain implements FilterChain {
3737

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2009 the original author or authors.
2+
* Copyright 2002-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
import org.springframework.util.Assert;
2424

2525
/**
26-
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
26+
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
2727
*
2828
* <p>Used for testing the web framework; also useful for testing
2929
* custom {@link javax.servlet.Filter} implementations.

spring-web/src/test/java/org/springframework/mock/web/MockFilterChain.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2011 the original author or authors.
2+
* Copyright 2002-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@
2323
import org.springframework.util.Assert;
2424

2525
/**
26-
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
26+
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
2727
*
2828
* <p>Used for testing the web framework; also useful for testing
2929
* custom {@link javax.servlet.Filter} implementations.

spring-webmvc/src/test/java/org/springframework/mock/web/MockFilterChain.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2009 the original author or authors.
2+
* Copyright 2002-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,9 +23,9 @@
2323
import org.springframework.util.Assert;
2424

2525
/**
26-
* Mock implementation of the {@link javax.servlet.FilterConfig} interface.
26+
* Mock implementation of the {@link javax.servlet.FilterChain} interface.
2727
*
28-
* <p>Used for testing the web framework; also usefol for testing
28+
* <p>Used for testing the web framework; also useful for testing
2929
* custom {@link javax.servlet.Filter} implementations.
3030
*
3131
* @author Juergen Hoeller

0 commit comments

Comments
 (0)