Skip to content

Commit

Permalink
Removed the Issues list as it is deprecated by DebugLog
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmahDean committed Oct 29, 2023
1 parent 998b208 commit b460266
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions client/Monolith.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ public class Monolith
public MonolithHardware Hardware;
public MonolithSecurity Security;
public MonolithNetwork Network;
/** For issues with gathering the data itself. No diagnoses based on the info will be made in this program. */
public List<string> Issues;
public string DebugLogText;

public Monolith()
Expand All @@ -54,7 +52,6 @@ public Monolith()
Hardware = new MonolithHardware();
Security = new MonolithSecurity();
Network = new MonolithNetwork();
Issues = Cache.Issues;
}

public string Serialize()
Expand Down
2 changes: 0 additions & 2 deletions client/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ public static async Task Main()
{
try
{
// Issues is no longer used anywhere, however it is assigned a list to prevent potential errors with Specified.
data.Cache.Issues = new List<string>();

// Set Specify to run in en-US so system messages are printed in English.
var culture = CultureInfo.CreateSpecificCulture("en-US");
Expand Down
1 change: 0 additions & 1 deletion client/data/Cache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public static partial class Cache
[NonSerialized]
public const int AF_INET6 = 23; // IP_v6 = System.Net.Sockets.AddressFamily.InterNetworkV6

public static List<string> Issues { get; set; }
public static Dictionary<string, object> Os { get; private set; }
public static Dictionary<string, object> Cs { get; private set; }
public static IDictionary SystemVariables { get; private set; }
Expand Down

0 comments on commit b460266

Please sign in to comment.