no longer list Singleton and ServiceLocator as anti-pattern, still advise against it in examples

This commit is contained in:
Dominik Liebler
2020-04-17 13:36:04 +02:00
parent 7b847bdb21
commit 6a6b1bbeea
2 changed files with 3 additions and 3 deletions

View File

@@ -12,5 +12,5 @@ solve this problem by somehow controlling this object creation.
* [Pool](Pool) [:notebook:](http://en.wikipedia.org/wiki/Object_pool_pattern)
* [Prototype](Prototype) [:notebook:](http://en.wikipedia.org/wiki/Prototype_pattern)
* [SimpleFactory](SimpleFactory)
* [Singleton](Singleton) [:notebook:](http://en.wikipedia.org/wiki/Singleton_pattern) (is considered an anti-pattern! :no_entry:)
* [Singleton](Singleton) [:notebook:](http://en.wikipedia.org/wiki/Singleton_pattern)
* [StaticFactory](StaticFactory)