about summary refs log tree commit diff
path: root/DayFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DayFactory.cs')
-rw-r--r--DayFactory.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/DayFactory.cs b/DayFactory.cs
deleted file mode 100644
index 0a05ecb..0000000
--- a/DayFactory.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-
-namespace aoc2019
-{
-    internal class DayFactory
-    {
-        internal static Day GetDay(int daynum)
-        {
-            switch (daynum)
-            {
-                case 1: return new Day1();
-                case 2: return new Day2();
-                case 3: return new Day3();
-                case 4: return new Day4();
-                default: return null;
-            }
-        }
-    }
-}