From 5a1f88d0e66d48635be6cfcca584dd7269940de7 Mon Sep 17 00:00:00 2001 From: Robin van Poppel Date: Sun, 12 Apr 2020 09:36:13 +0200 Subject: [PATCH] Remove invalid xml params / unnecessary verbatim --- KeeTrayTOTP/FormAbout.cs | 1 - KeeTrayTOTP/FormHelp.cs | 3 +-- KeeTrayTOTP/FormSettings.cs | 2 +- KeeTrayTOTP/Libraries/TOTPProvider.cs | 1 - KeeTrayTOTP/SetupTOTP.cs | 2 +- KeeTrayTOTP/TrayTOTP_TimeCorrectionCollection.cs | 1 - 6 files changed, 3 insertions(+), 7 deletions(-) diff --git a/KeeTrayTOTP/FormAbout.cs b/KeeTrayTOTP/FormAbout.cs index 2b53491..8e762da 100644 --- a/KeeTrayTOTP/FormAbout.cs +++ b/KeeTrayTOTP/FormAbout.cs @@ -18,7 +18,6 @@ internal partial class FormAbout : Form /// /// Windows Form Constructor. /// - /// Plugin Host. internal FormAbout() { InitializeComponent(); diff --git a/KeeTrayTOTP/FormHelp.cs b/KeeTrayTOTP/FormHelp.cs index be99c82..ce56896 100644 --- a/KeeTrayTOTP/FormHelp.cs +++ b/KeeTrayTOTP/FormHelp.cs @@ -17,7 +17,6 @@ internal partial class FormHelp : Form /// /// Windows Form Constructor. /// - /// Plugin Host. /// Getting Started Display Flag. internal FormHelp(bool gettingStarted = false) { @@ -33,7 +32,7 @@ internal FormHelp(bool gettingStarted = false) private void FormHelp_Load(object sender, EventArgs e) { Size = new Size(550, 350); - Text = Localization.Strings.Help + @" - " + Localization.Strings.TrayTOTPPlugin; + Text = Localization.Strings.Help + " - " + Localization.Strings.TrayTOTPPlugin; foreach (Control ctl in SplitContainerHelp.Panel2.Controls) { ctl.Location = new Point(3, 3); diff --git a/KeeTrayTOTP/FormSettings.cs b/KeeTrayTOTP/FormSettings.cs index 0a6b812..bfb3c7b 100644 --- a/KeeTrayTOTP/FormSettings.cs +++ b/KeeTrayTOTP/FormSettings.cs @@ -46,7 +46,7 @@ private void FormSettings_Load(object sender, EventArgs e) { GlobalWindowManager.AddWindow(this); - Text = Localization.Strings.Settings + @" - " + Localization.Strings.TrayTOTPPlugin; // Set form's name using constants. + Text = Localization.Strings.Settings + " - " + Localization.Strings.TrayTOTPPlugin; // Set form's name using constants. Working(true, true); // Set controls depending on the state of action. WorkerLoad.RunWorkerAsync(); // Load Settings in form controls. } diff --git a/KeeTrayTOTP/Libraries/TOTPProvider.cs b/KeeTrayTOTP/Libraries/TOTPProvider.cs index 7fee6ae..de26d5e 100644 --- a/KeeTrayTOTP/Libraries/TOTPProvider.cs +++ b/KeeTrayTOTP/Libraries/TOTPProvider.cs @@ -68,7 +68,6 @@ public int Length /// /// Instantiate a new TOTP_Generator. /// - /// Saved Settings. public TOTPProvider(string[] settings, ref TimeCorrectionCollection tcc) { this._duration = Convert.ToInt16(settings[0]); diff --git a/KeeTrayTOTP/SetupTOTP.cs b/KeeTrayTOTP/SetupTOTP.cs index 5d2e3af..3076a69 100644 --- a/KeeTrayTOTP/SetupTOTP.cs +++ b/KeeTrayTOTP/SetupTOTP.cs @@ -33,7 +33,7 @@ private void SetupTOTP_Load(object sender, EventArgs e) { GlobalWindowManager.AddWindow(this); - Text = Localization.Strings.Setup + @" - " + Localization.Strings.TrayTOTPPlugin; //Set form's name using constants. + Text = Localization.Strings.Setup + " - " + Localization.Strings.TrayTOTPPlugin; //Set form's name using constants. if (_plugin.SettingsCheck(_entry) || _plugin.SeedCheck(_entry)) //Checks the the totp settings exists. { diff --git a/KeeTrayTOTP/TrayTOTP_TimeCorrectionCollection.cs b/KeeTrayTOTP/TrayTOTP_TimeCorrectionCollection.cs index fb7574b..db75a8d 100644 --- a/KeeTrayTOTP/TrayTOTP_TimeCorrectionCollection.cs +++ b/KeeTrayTOTP/TrayTOTP_TimeCorrectionCollection.cs @@ -55,7 +55,6 @@ internal bool Enable /// /// Handles Time Correction for TOTP Generators insuring generation accuracy. /// - /// Handle to the plugin's class. /// Enabled by Default. internal TimeCorrectionCollection(bool enable = true) {