Skip to content

Commit

Permalink
Remove debug lines + formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DJScias committed Apr 25, 2022
1 parent 3582617 commit 22e92dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
1 change: 0 additions & 1 deletion WowHeadParser/Classes/Zone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using WowHeadParser.Entities;
Expand Down
8 changes: 0 additions & 8 deletions WowHeadParser/Entities/Creature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Newtonsoft.Json.Linq;
using static WowHeadParser.MainWindow;
using System.Windows.Forms;
using System.Diagnostics;

namespace WowHeadParser.Entities
{
Expand Down Expand Up @@ -367,9 +366,6 @@ public void SetCreatureLootData(CreatureLootItemParsing[] creatureLootItemDatas,

try
{
//Debug.WriteLine((object)allLootData[i].modes.ToString());
//Debug.WriteLine((object)allLootData[i].modes["mode"].ToString());
//Debug.WriteLine(allLootData[i].modes["mode"].GetType());
String realItemMode = allLootData[i].modes["mode"];
String treatmentItemMode = realItemMode;

Expand Down Expand Up @@ -403,10 +399,6 @@ public void SetCreatureLootData(CreatureLootItemParsing[] creatureLootItemDatas,
{
foreach (String mode in modes)
{
//Debug.WriteLine("mode: " + mode);
//Debug.WriteLine(allLootData[i].id);
//Debug.WriteLine((object)allLootData[i].modes.ToString());
//Debug.WriteLine((float)Convert.ToDouble(allLootData[i].modes["0"]["count"]));
try
{
count = (float)Convert.ToDouble(allLootData[i].modes["0"]["count"]) != -1 ? (float)Convert.ToDouble(allLootData[i].modes["0"]["count"]) : 0.0f;
Expand Down
8 changes: 4 additions & 4 deletions WowHeadParser/MainWindow.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion WowHeadParser/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Windows.Forms;
using WowHeadParser.Entities;
Expand Down

0 comments on commit 22e92dd

Please sign in to comment.