From fa93d542e727f2d2156bc5de28752823faae7763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sun, 28 Jun 2015 20:35:21 +0300 Subject: [PATCH] #94 Remove Calendar#getInstance from the real world examples of Factory Method --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index c9ce503fb..c6cfe8f20 100644 --- a/README.md +++ b/README.md @@ -139,9 +139,6 @@ A programming idiom is a means of expressing a recurring construct in one or mor * a class wants its subclasses to specify the objects it creates * classes delegate responsibility to one of several helper subclasses, and you want to localize the knowledge of which helper subclass is the delegate -**Real world examples:** -* [java.util.Calendar#getInstance()](http://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html#getInstance%28%29) - ## Prototype [↑](#list-of-design-patterns) **Intent:** Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.