aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Sockets
diff options
context:
space:
mode:
authorMarco Carvalho <marcolucio27@gmail.com>2023-06-15 00:54:27 -0300
committerGitHub <noreply@github.com>2023-06-15 03:54:27 +0000
commit32d21ddf17ff7d61d8185a79bec3f5d02706109b (patch)
tree98c2409a91cfae028ccbbacea9b50126527ec9a6 /src/Ryujinx.HLE/HOS/Services/Sockets
parent82f90704a0662bba7254cb0bc262d785acdabc67 (diff)
Inheritance list should not be redundant (#5230)
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Sockets')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs
index 05874868..e04a3595 100644
--- a/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Sockets/Bsd/ISocket.cs
@@ -5,7 +5,7 @@ using System.Net.Sockets;
namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd
{
- interface ISocket : IDisposable, IFileDescriptor
+ interface ISocket : IFileDescriptor
{
IPEndPoint RemoteEndPoint { get; }
IPEndPoint LocalEndPoint { get; }