aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2018-12-15 19:53:09 +0100
committerBond_009 <bond.009@outlook.com>2018-12-16 00:49:18 +0100
commit22093c9e8fe15691cca79795acc2616a8b7ec4ff (patch)
tree56b40f8dd4d23ae244a7fc787affbe1ac817e899
parent336a4a2b8d728c32bd22404dfa16f1a80a3e9b15 (diff)
Removed some warnings
-rw-r--r--DvdLib/Ifo/ProgramChain.cs1
-rw-r--r--Emby.IsoMounting/IsoMounter/LinuxIsoManager.cs17
-rw-r--r--Emby.IsoMounting/IsoMounter/LinuxMount.cs3
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs2
-rw-r--r--Mono.Nat/Pmp/PmpNatDevice.cs4
-rw-r--r--RSSDP/DiscoveredSsdpDevice.cs4
-rw-r--r--RSSDP/SsdpDeviceLocator.cs4
-rw-r--r--RSSDP/SsdpDevicePublisher.cs4
-rw-r--r--SocketHttpListener/Net/HttpListenerContext.cs6
-rw-r--r--SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs6
-rw-r--r--SocketHttpListener/WebSocket.cs8
11 files changed, 22 insertions, 37 deletions
diff --git a/DvdLib/Ifo/ProgramChain.cs b/DvdLib/Ifo/ProgramChain.cs
index 57cb5d6bd..6b4e5fa32 100644
--- a/DvdLib/Ifo/ProgramChain.cs
+++ b/DvdLib/Ifo/ProgramChain.cs
@@ -35,7 +35,6 @@ namespace DvdLib.Ifo
private ushort _goupProgramNumber;
public readonly ProgramChain Goup; // ?? maybe Group
- private byte _playbackMode;
public ProgramPlaybackMode PlaybackMode { get; private set; }
public uint ProgramCount { get; private set; }
diff --git a/Emby.IsoMounting/IsoMounter/LinuxIsoManager.cs b/Emby.IsoMounting/IsoMounter/LinuxIsoManager.cs
index 12669d05d..4716c64b2 100644
--- a/Emby.IsoMounting/IsoMounter/LinuxIsoManager.cs
+++ b/Emby.IsoMounting/IsoMounter/LinuxIsoManager.cs
@@ -144,24 +144,21 @@ namespace IsoMounter
return Task.FromResult(false);
}
- public async Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken)
+ public Task<IIsoMount> Mount(string isoPath, CancellationToken cancellationToken)
{
-
LinuxMount mountedISO;
- if (MountISO(isoPath, out mountedISO)) {
-
- return mountedISO;
-
- }else{
-
+ if (MountISO(isoPath, out mountedISO))
+ {
+ return Task.FromResult<IIsoMount>(mountedISO);
+ }
+ else
+ {
throw new IOException(String.Format(
"An error occurred trying to mount image [$0].",
isoPath
));
-
}
-
}
#endregion
diff --git a/Emby.IsoMounting/IsoMounter/LinuxMount.cs b/Emby.IsoMounting/IsoMounter/LinuxMount.cs
index 8d1f56e39..9c60f9d0a 100644
--- a/Emby.IsoMounting/IsoMounter/LinuxMount.cs
+++ b/Emby.IsoMounting/IsoMounter/LinuxMount.cs
@@ -1,8 +1,5 @@
using System;
-using MediaBrowser.Model.Diagnostics;
using MediaBrowser.Model.IO;
-using MediaBrowser.Model.Logging;
-using MediaBrowser.Model.System;
namespace IsoMounter
{
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index 31af9370c..17516d6b9 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -3179,4 +3179,4 @@ namespace Emby.Server.Implementations.Library
CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
}
}
-} \ No newline at end of file
+}
diff --git a/Mono.Nat/Pmp/PmpNatDevice.cs b/Mono.Nat/Pmp/PmpNatDevice.cs
index 2ef66fdbb..bf27bfebc 100644
--- a/Mono.Nat/Pmp/PmpNatDevice.cs
+++ b/Mono.Nat/Pmp/PmpNatDevice.cs
@@ -109,7 +109,7 @@ namespace Mono.Nat.Pmp
if (attempt == 0)
{
- Task.Run(() => CreatePortMapListen(udpClient, mapping, cancellationTokenSource.Token));
+ await Task.Run(() => CreatePortMapListen(udpClient, mapping, cancellationTokenSource.Token));
}
attempt++;
@@ -214,4 +214,4 @@ namespace Mono.Nat.Pmp
this.localAddress, this.publicAddress, this.LastSeen);
}
}
-} \ No newline at end of file
+}
diff --git a/RSSDP/DiscoveredSsdpDevice.cs b/RSSDP/DiscoveredSsdpDevice.cs
index 66b8bea36..7e70817dd 100644
--- a/RSSDP/DiscoveredSsdpDevice.cs
+++ b/RSSDP/DiscoveredSsdpDevice.cs
@@ -17,7 +17,6 @@ namespace Rssdp
#region Fields
- private SsdpRootDevice _Device;
private DateTimeOffset _AsAt;
#endregion
@@ -55,7 +54,6 @@ namespace Rssdp
if (_AsAt != value)
{
_AsAt = value;
- _Device = null;
}
}
}
@@ -93,4 +91,4 @@ namespace Rssdp
#endregion
}
-} \ No newline at end of file
+}
diff --git a/RSSDP/SsdpDeviceLocator.cs b/RSSDP/SsdpDeviceLocator.cs
index 6a61a52f3..32289822f 100644
--- a/RSSDP/SsdpDeviceLocator.cs
+++ b/RSSDP/SsdpDeviceLocator.cs
@@ -124,7 +124,7 @@ namespace Rssdp.Infrastructure
{
await SearchAsync(CancellationToken.None).ConfigureAwait(false);
}
- catch (Exception ex)
+ catch (Exception)
{
}
@@ -621,4 +621,4 @@ namespace Rssdp.Infrastructure
#endregion
}
-} \ No newline at end of file
+}
diff --git a/RSSDP/SsdpDevicePublisher.cs b/RSSDP/SsdpDevicePublisher.cs
index 8d57deb5e..2646023e8 100644
--- a/RSSDP/SsdpDevicePublisher.cs
+++ b/RSSDP/SsdpDevicePublisher.cs
@@ -312,7 +312,7 @@ namespace Rssdp.Infrastructure
{
await _CommsServer.SendMessage(System.Text.Encoding.UTF8.GetBytes(message), endPoint, receivedOnlocalIpAddress, cancellationToken).ConfigureAwait(false);
}
- catch (Exception ex)
+ catch (Exception)
{
}
@@ -558,4 +558,4 @@ namespace Rssdp.Infrastructure
}
}
}
-} \ No newline at end of file
+}
diff --git a/SocketHttpListener/Net/HttpListenerContext.cs b/SocketHttpListener/Net/HttpListenerContext.cs
index f4679568a..b90f07567 100644
--- a/SocketHttpListener/Net/HttpListenerContext.cs
+++ b/SocketHttpListener/Net/HttpListenerContext.cs
@@ -1,19 +1,13 @@
using System;
using System.Net;
using System.Security.Principal;
-using MediaBrowser.Model.Cryptography;
-using MediaBrowser.Model.IO;
-using MediaBrowser.Model.Logging;
-using MediaBrowser.Model.Text;
using SocketHttpListener.Net.WebSockets;
-using SocketHttpListener.Primitives;
using System.Threading.Tasks;
namespace SocketHttpListener.Net
{
public sealed unsafe partial class HttpListenerContext
{
- internal HttpListener _listener;
private HttpListenerResponse _response;
private IPrincipal _user;
diff --git a/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs b/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs
index e61bde32e..34b5eaf74 100644
--- a/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs
+++ b/SocketHttpListener/Net/HttpListenerRequestUriBuilder.cs
@@ -253,7 +253,7 @@ namespace SocketHttpListener.Net
//if (NetEventSource.IsEnabled)
// NetEventSource.Error(this, SR.Format(SR.net_log_listener_cant_convert_percent_value, codePoint));
}
- catch (EncoderFallbackException e)
+ catch (EncoderFallbackException)
{
// If utf8Encoding.GetBytes() fails
//if (NetEventSource.IsEnabled) NetEventSource.Error(this, SR.Format(SR.net_log_listener_cant_convert_to_utf8, unicodeString, e.Message));
@@ -303,11 +303,11 @@ namespace SocketHttpListener.Net
return true;
}
- catch (DecoderFallbackException e)
+ catch (DecoderFallbackException)
{
//if (NetEventSource.IsEnabled) NetEventSource.Error(this, SR.Format(SR.net_log_listener_cant_convert_bytes, GetOctetsAsString(_rawOctets), e.Message));
}
- catch (EncoderFallbackException e)
+ catch (EncoderFallbackException)
{
// If utf8Encoding.GetBytes() fails
//if (NetEventSource.IsEnabled) NetEventSource.Error(this, SR.Format(SR.net_log_listener_cant_convert_to_utf8, decodedString, e.Message));
diff --git a/SocketHttpListener/WebSocket.cs b/SocketHttpListener/WebSocket.cs
index 385b25aed..fd0c3e5bf 100644
--- a/SocketHttpListener/WebSocket.cs
+++ b/SocketHttpListener/WebSocket.cs
@@ -299,7 +299,7 @@ namespace SocketHttpListener
}
OnError.Emit(this, new ErrorEventArgs(message));
}
- catch (Exception ex)
+ catch (Exception)
{
}
}
@@ -310,7 +310,7 @@ namespace SocketHttpListener
{
OnError.Emit(this, new ErrorEventArgs(message));
}
- catch (Exception ex)
+ catch (Exception)
{
}
}
@@ -423,7 +423,7 @@ namespace SocketHttpListener
private bool processPingFrame(WebSocketFrame frame)
{
- var mask = Mask.Unmask;
+ //var mask = Mask.Unmask;
return true;
}
@@ -796,4 +796,4 @@ namespace SocketHttpListener
#endregion
}
-} \ No newline at end of file
+}