From 6e4c1be9b7fe428439143fa13c6b7404e2430891 Mon Sep 17 00:00:00 2001 From: Boxfriend Date: Mon, 1 Dec 2025 14:30:39 -0500 Subject: [PATCH] made class static, no reason for it not to be --- AdventOfCode2025/AdventSolution.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AdventOfCode2025/AdventSolution.cs b/AdventOfCode2025/AdventSolution.cs index c2599da..17a82b3 100644 --- a/AdventOfCode2025/AdventSolution.cs +++ b/AdventOfCode2025/AdventSolution.cs @@ -7,7 +7,7 @@ public interface IAdventSolution public record struct AdventSolution(string PartOne, string PartTwo); -public class AdventSolver where T : IAdventSolution, new() +public static class AdventSolver where T : IAdventSolution, new() { public static void Solve(string input, int day, string title) {