diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-08-05 20:37:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-05 20:37:21 -0400 |
| commit | fec7c4782432edd38fdbdcca9234a93b5562181a (patch) | |
| tree | 0cee04cc690bfb3d4363181cf832d5ee43da54a6 /MediaBrowser.Api/ApiEntryPoint.cs | |
| parent | 407d82ea11383f55d2187a69c9711ee7511ee0e3 (diff) | |
| parent | 23da61281ee108954de9799761fa9c78dc4547ce (diff) | |
Merge pull request #1932 from softworkz/ReduceWarnings
Reduced compiler warnings. No functional changes.
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
| -rw-r--r-- | MediaBrowser.Api/ApiEntryPoint.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs index 87fa3d46c..dbc1179e2 100644 --- a/MediaBrowser.Api/ApiEntryPoint.cs +++ b/MediaBrowser.Api/ApiEntryPoint.cs @@ -559,13 +559,13 @@ namespace MediaBrowser.Api { } - catch (IOException ex) + catch (IOException) { //Logger.ErrorException("Error deleting partial stream file(s) {0}", ex, path); DeletePartialStreamFiles(path, jobType, retryCount + 1, 500); } - catch (Exception ex) + catch { //Logger.ErrorException("Error deleting partial stream file(s) {0}", ex, path); } |
