remove debugging try/catch

This commit is contained in:
adelikat 2015-07-28 20:04:25 -04:00
parent 6bcbf82b7c
commit 6e9b10d4fd
1 changed files with 18 additions and 25 deletions

View File

@ -977,8 +977,6 @@ namespace BizHawk.Client.EmuHawk
private void DrawCellDrag(PaintEventArgs e)
{
if (DraggingCell != null)
{
try
{
var text = "";
if (QueryItemText != null)
@ -1003,11 +1001,6 @@ namespace BizHawk.Client.EmuHawk
Gdi.PrepDrawString(this.NormalFont, this.ForeColor);
Gdi.DrawString(text, new Point(x1 + CellWidthPadding, y1 + CellHeightPadding));
}
catch (Exception ex)
{
int zzz = 0;
}
}
}
private void DrawColumnText(PaintEventArgs e)