mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-25 08:46:28 +00:00
removed warning about used exception var
This commit is contained in:
parent
15b1b2891f
commit
4a1887d28b
1 changed files with 4 additions and 1 deletions
|
@ -89,8 +89,11 @@ namespace NBTExplorer.Model
|
|||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
if (FormRegistry.MessageBox != null)
|
||||
if (FormRegistry.MessageBox != null) {
|
||||
FormRegistry.MessageBox("Not a valid region file.");
|
||||
} else {
|
||||
Console.WriteLine(e.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue