1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-22 05:00:52 -05:00

Branch for IW4X practically everything refactored

This commit is contained in:
RaidMax
2017-05-26 17:49:27 -05:00
parent 85a658b987
commit 10075b0d3f
107 changed files with 7426 additions and 3995 deletions

View File

@ -60,7 +60,7 @@ namespace CountryLookupProj
{
fileInput = new FileStream(fileName, FileMode.Open, FileAccess.Read);
}
catch (FileNotFoundException e)
catch (FileNotFoundException)
{
Console.WriteLine("File " + fileName + " not found.");
}
@ -73,7 +73,7 @@ namespace CountryLookupProj
{
addr = IPAddress.Parse(str);
}
catch (FormatException e)
catch (FormatException)
{
return "--";
}
@ -109,7 +109,7 @@ namespace CountryLookupProj
{
addr = IPAddress.Parse(str);
}
catch (FormatException e)
catch (FormatException)
{
return "N/A";
}
@ -134,7 +134,7 @@ namespace CountryLookupProj
fileInput.Seek(6 * offset, 0);
fileInput.Read(buf, 0, 6);
}
catch (IOException e)
catch (IOException)
{
Console.WriteLine("IO Exception");
}