Fix pokemon name not showing

Brian [2016-08-02 13:10:43]
Fix pokemon name not showing
Filename
PokemonGo/RocketAPI/Window/MainForm.cs
diff --git a/PokemonGo/RocketAPI/Window/MainForm.cs b/PokemonGo/RocketAPI/Window/MainForm.cs
index 02509a0..e330388 100644
--- a/PokemonGo/RocketAPI/Window/MainForm.cs
+++ b/PokemonGo/RocketAPI/Window/MainForm.cs
@@ -1248,10 +1248,6 @@ namespace PokemonGo.RocketAPI.Window
                         .First();
                 args.Text = $"You have {family.Candy} {((PokemonId)((int)family.FamilyId)).ToString()} Candy";
             };
-
-            objectListView1.FormatRow += delegate (object sender, FormatRowEventArgs args) {
-                args.Item.Text = args.RowIndex.ToString();
-            };
         }

         private Image GetPokemonImage(int pokemonId)
You may download the files in Public Git.