mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Cleaned up some warnings.
This commit is contained in:
parent
1e4a1cf263
commit
10017b7e8c
27 changed files with 68 additions and 98 deletions
|
@ -50,7 +50,7 @@ namespace FFXIVClassic_Map_Server.utils
|
|||
name = matches[2].Value.Trim(',');
|
||||
|
||||
}
|
||||
catch (FormatException e)
|
||||
catch (FormatException)
|
||||
{ continue; }
|
||||
|
||||
placenames.Add(id, name);
|
||||
|
@ -72,7 +72,7 @@ namespace FFXIVClassic_Map_Server.utils
|
|||
id = UInt32.Parse(matches[0].Value.Trim(','));
|
||||
pId = UInt32.Parse(matches[1].Value.Trim(','));
|
||||
}
|
||||
catch (FormatException e)
|
||||
catch (FormatException)
|
||||
{ continue; }
|
||||
|
||||
cmd.Parameters["@id"].Value = id;
|
||||
|
@ -131,7 +131,7 @@ namespace FFXIVClassic_Map_Server.utils
|
|||
nameId = UInt32.Parse(matches[6].Value.Trim(','));
|
||||
|
||||
}
|
||||
catch (FormatException e)
|
||||
catch (FormatException)
|
||||
{ continue; }
|
||||
|
||||
cmd.Parameters["@id"].Value = id;
|
||||
|
@ -198,7 +198,7 @@ namespace FFXIVClassic_Map_Server.utils
|
|||
|
||||
|
||||
}
|
||||
catch (FormatException e)
|
||||
catch (FormatException)
|
||||
{ continue; }
|
||||
|
||||
cmd.Parameters["@id"].Value = id;
|
||||
|
@ -260,7 +260,7 @@ namespace FFXIVClassic_Map_Server.utils
|
|||
name = matches2[9].Value.Trim(',');
|
||||
points = UInt32.Parse(matches[3].Value.Trim(','));
|
||||
}
|
||||
catch (FormatException e)
|
||||
catch (FormatException)
|
||||
{ continue; }
|
||||
|
||||
if (id == 100)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue