1
0
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:
Taloth Saldono
2014-06-01 00:11:33 +02:00
committed by Mark McDowall
parent 6c8c87d2e2
commit d64c4445b8
34 changed files with 22 additions and 207 deletions
+2 -2
View File
@@ -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;