summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r--win/CS/HandBrakeWPF/Services/PrePostActionService.cs2
-rw-r--r--win/CS/HandBrakeWPF/Services/UserSettingService.cs2
2 files changed, 1 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Services/PrePostActionService.cs b/win/CS/HandBrakeWPF/Services/PrePostActionService.cs
index 7cfceace3..f6e4fc800 100644
--- a/win/CS/HandBrakeWPF/Services/PrePostActionService.cs
+++ b/win/CS/HandBrakeWPF/Services/PrePostActionService.cs
@@ -126,7 +126,6 @@ namespace HandBrakeWPF.Services
return;
}
-
if (this.userSettingService.GetUserSetting<string>(UserSettingConstants.WhenCompleteAction) == "Do nothing")
{
return;
@@ -141,7 +140,6 @@ namespace HandBrakeWPF.Services
this.windowManager.ShowDialog(titleSpecificView);
});
-
if (!titleSpecificView.IsCancelled)
{
// Do something whent he encode ends.
diff --git a/win/CS/HandBrakeWPF/Services/UserSettingService.cs b/win/CS/HandBrakeWPF/Services/UserSettingService.cs
index 6b7df3d85..d10ec84df 100644
--- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs
+++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs
@@ -216,7 +216,7 @@ namespace HandBrakeWPF.Services
return (SerializableDictionary<string, object>)this.serializer.Deserialize(stream);
}
}
- catch (Exception exc)
+ catch (Exception)
{
return new SerializableDictionary<string, object>();
}