aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Localization/LocalizedStrings.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-04 16:08:45 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-04 16:08:45 -0400
commit54a5d63a619eeb78b4e84c626a4c208419be9705 (patch)
tree912f682b59e352ba42245ede2c3c2e6f2fddc61d /MediaBrowser.Controller/Localization/LocalizedStrings.cs
parentb40991b28de1312bbd16855c30aa371921014787 (diff)
mono fixes
Diffstat (limited to 'MediaBrowser.Controller/Localization/LocalizedStrings.cs')
-rw-r--r--MediaBrowser.Controller/Localization/LocalizedStrings.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Localization/LocalizedStrings.cs b/MediaBrowser.Controller/Localization/LocalizedStrings.cs
index bd82d39ea..94ac90271 100644
--- a/MediaBrowser.Controller/Localization/LocalizedStrings.cs
+++ b/MediaBrowser.Controller/Localization/LocalizedStrings.cs
@@ -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;