diff --git a/chain/README.md b/chain/README.md index bf2ef6b6c..ef18f6f64 100644 --- a/chain/README.md +++ b/chain/README.md @@ -26,7 +26,6 @@ Use Chain of Responsibility when ## Real world examples -* [javax.servlet.FilterChain](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/FilterChain.html) and [javax.servlet.Filter](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/Filter.html) * [java.util.logging.Logger#log()](http://docs.oracle.com/javase/8/docs/api/java/util/logging/Logger.html#log%28java.util.logging.Level,%20java.lang.String%29) * [Apache Commons Chain](https://commons.apache.org/proper/commons-chain/index.html) diff --git a/intercepting-filter/README.md b/intercepting-filter/README.md index 327f091b1..7d53472a0 100644 --- a/intercepting-filter/README.md +++ b/intercepting-filter/README.md @@ -24,6 +24,7 @@ Use the Intercepting Filter pattern when ## Real world examples +* [javax.servlet.FilterChain](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/FilterChain.html) and [javax.servlet.Filter](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/Filter.html) * [Struts 2 - Interceptors](https://struts.apache.org/docs/interceptors.html) ## Credits