From dc29fa9f0be610281c252e1d5bacd79252f59a14 Mon Sep 17 00:00:00 2001 From: David Maas Date: Thu, 29 May 2025 14:10:12 -0500 Subject: [PATCH 1/3] Warnings! --- GitHubActionsTest/Test.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GitHubActionsTest/Test.cs b/GitHubActionsTest/Test.cs index ccf68ce..c8565e1 100644 --- a/GitHubActionsTest/Test.cs +++ b/GitHubActionsTest/Test.cs @@ -2,7 +2,8 @@ { public class Test { - public object Field; + public object Field; // Wowie + public object Field2; public override string ToString() => "Hello, world!"; From d1f6c288f59544aa685993b732eaeef519f35713 Mon Sep 17 00:00:00 2001 From: David Maas Date: Thu, 29 May 2025 15:36:20 -0500 Subject: [PATCH 2/3] Fixed warnings --- GitHubActionsTest/Test.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitHubActionsTest/Test.cs b/GitHubActionsTest/Test.cs index c8565e1..01b82cf 100644 --- a/GitHubActionsTest/Test.cs +++ b/GitHubActionsTest/Test.cs @@ -2,8 +2,8 @@ { public class Test { - public object Field; // Wowie - public object Field2; + public object Field = new(); // Wowie + public object Field2 = new(); public override string ToString() => "Hello, world!"; From 76b0b758a4c70246279b1738b7d588852d3c1f16 Mon Sep 17 00:00:00 2001 From: David Maas Date: Thu, 29 May 2025 16:33:34 -0500 Subject: [PATCH 3/3] Unfixed warnings --- GitHubActionsTest/Test.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitHubActionsTest/Test.cs b/GitHubActionsTest/Test.cs index 01b82cf..c8565e1 100644 --- a/GitHubActionsTest/Test.cs +++ b/GitHubActionsTest/Test.cs @@ -2,8 +2,8 @@ { public class Test { - public object Field = new(); // Wowie - public object Field2 = new(); + public object Field; // Wowie + public object Field2; public override string ToString() => "Hello, world!";