mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Do not complain about unused catch that are used in release.
This commit is contained in:
@@ -81,6 +81,7 @@ namespace DiscImageChef.Core
|
|||||||
// Can't connect to the server, do nothing
|
// Can't connect to the server, do nothing
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// ReSharper disable once RedundantCatchClause
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
|||||||
@@ -82,6 +82,7 @@ namespace DiscImageChef.Server.Controllers
|
|||||||
response.Content = new StringContent("ok", System.Text.Encoding.UTF8, "text/plain");
|
response.Content = new StringContent("ok", System.Text.Encoding.UTF8, "text/plain");
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
// ReSharper disable once RedundantCatchClause
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
|
|||||||
Reference in New Issue
Block a user