mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
Fixed compile warnings.
This commit is contained in:
committed by
Mark McDowall
parent
6c8c87d2e2
commit
d64c4445b8
@@ -48,12 +48,12 @@ namespace NzbDrone.Common.Serializer
|
||||
result = Deserialize<T>(json);
|
||||
return true;
|
||||
}
|
||||
catch (JsonReaderException ex)
|
||||
catch (JsonReaderException)
|
||||
{
|
||||
result = default(T);
|
||||
return false;
|
||||
}
|
||||
catch (JsonSerializationException ex)
|
||||
catch (JsonSerializationException)
|
||||
{
|
||||
result = default(T);
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user