mono fixes

This commit is contained in:
Luke Pulverenti
2013-10-04 16:08:45 -04:00
parent b40991b28d
commit 54a5d63a61
22 changed files with 31 additions and 124 deletions

View File

@@ -130,17 +130,17 @@ namespace MediaBrowser.Controller.Localization
{
value = field.GetValue(stringData) as string;
}
catch (TargetException ex)
catch (TargetException)
{
//Logger.ErrorException("Error getting value for field: {0}", ex, field.Name);
continue;
}
catch (FieldAccessException ex)
catch (FieldAccessException)
{
//Logger.ErrorException("Error getting value for field: {0}", ex, field.Name);
continue;
}
catch (NotSupportedException ex)
catch (NotSupportedException)
{
//Logger.ErrorException("Error getting value for field: {0}", ex, field.Name);
continue;