Skip to content

Commit

Permalink
Make fields non-nullable.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony81799 committed Jul 13, 2024
1 parent 4728d83 commit 6d017da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions RDP/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ public class Main : IPlugin, IReloadable, IDisposable
public string Name => "RDP";
public string Description => "Launches RDP connections";
private bool _disposed;
private PluginInitContext? _context;
private RDPConnections? _rdpConnections;
private RDPConnectionsStore? _store;
private SearchPhraseProvider? _searchPhraseProvider;
private PluginInitContext _context;
private RDPConnections _rdpConnections;
private RDPConnectionsStore _store;
private SearchPhraseProvider _searchPhraseProvider;

/// <summary>
/// initialize the plugin.
Expand Down Expand Up @@ -117,7 +117,7 @@ private static void StartMstsc(string connection)
/// </summary>
private class SearchPhraseProvider
{
public string? Search { get; set; }
public string Search { get; set; }
}

public void ReloadData()
Expand Down

0 comments on commit 6d017da

Please sign in to comment.