Remove useless events

Brian [2016-08-23 14:23:58]
Remove useless events
Filename
PokemonGo.RocketBot.Window/Forms/SettingForm.Designer.cs
PokemonGo.RocketBot.Window/Forms/SettingForm.cs
diff --git a/PokemonGo.RocketBot.Window/Forms/SettingForm.Designer.cs b/PokemonGo.RocketBot.Window/Forms/SettingForm.Designer.cs
index 1330d94..8766141 100644
--- a/PokemonGo.RocketBot.Window/Forms/SettingForm.Designer.cs
+++ b/PokemonGo.RocketBot.Window/Forms/SettingForm.Designer.cs
@@ -636,7 +636,6 @@
             this.tbLatitude.Name = "tbLatitude";
             this.tbLatitude.Size = new System.Drawing.Size(184, 23);
             this.tbLatitude.TabIndex = 13;
-            this.tbLatitude.TextChanged += new System.EventHandler(this.tbLatitude_TextChanged);
             this.tbLatitude.Leave += new System.EventHandler(this.latitudeText_Leave);
             //
             // tbLongitude
@@ -687,7 +686,6 @@
             this.latLabel.Size = new System.Drawing.Size(53, 15);
             this.latLabel.TabIndex = 4;
             this.latLabel.Text = "Latitude:";
-            this.latLabel.Click += new System.EventHandler(this.latLabel_Click);
             //
             // UserLabel
             //
diff --git a/PokemonGo.RocketBot.Window/Forms/SettingForm.cs b/PokemonGo.RocketBot.Window/Forms/SettingForm.cs
index f1a78d9..861f10c 100644
--- a/PokemonGo.RocketBot.Window/Forms/SettingForm.cs
+++ b/PokemonGo.RocketBot.Window/Forms/SettingForm.cs
@@ -285,14 +285,6 @@ namespace PokemonGo.RocketBot.Window.Forms
             #endregion
         }

-        private void latLabel_Click(object sender, EventArgs e)
-        {
-        }
-
-        private void tbLatitude_TextChanged(object sender, EventArgs e)
-        {
-        }
-
         #region private methods

         private static int ConvertStringToInt(string input)
You may download the files in Public Git.