about summary refs log tree commit diff
path: root/Day5.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Day5.cs')
-rw-r--r--Day5.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Day5.cs b/Day5.cs
index 88465db..e599d16 100644
--- a/Day5.cs
+++ b/Day5.cs
@@ -65,13 +65,13 @@ namespace aoc2019
             }
         }
 
-        public override string Part1()
+        protected override string Part1()
         {
             RunIntCode(tape.ToList(), 1);
             return $"{output}";
         }
 
-        public override string Part2()
+        protected override string Part2()
         {
             RunIntCode(tape.ToList(), 5);
             return $"{output}";