Fix warnings

This commit is contained in:
Li 2022-06-18 01:15:15 +12:00
parent 2df39d75fd
commit 1afe643047

View file

@ -58,7 +58,7 @@ namespace HISP.Server
sqlCommand.ExecuteNonQuery(); sqlCommand.ExecuteNonQuery();
return true; return true;
} }
catch (Exception e) catch (Exception)
{ {
return false; return false;
}; };
@ -2643,7 +2643,7 @@ namespace HISP.Server
} }
return false; return false;
} }
catch (Exception e) catch (Exception)
{ {
return true; return true;
}; };
@ -2662,7 +2662,7 @@ namespace HISP.Server
} }
return false; return false;
} }
catch (Exception e) catch (Exception)
{ {
return true; return true;
} }