From dca91cdc709a848d7c3b2a6751515b363ca03df9 Mon Sep 17 00:00:00 2001 From: Forest Date: Thu, 27 Dec 2018 14:32:59 -0800 Subject: [PATCH] Undo an accidental class name change --- Hazel/ConnectionListener.cs | 2 +- Hazel/NetworkConnectionListener.cs | 4 ++-- Hazel/NewConnectionEventArgs.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Hazel/ConnectionListener.cs b/Hazel/ConnectionListener.cs index 3acda8e..fde09c6 100644 --- a/Hazel/ConnectionListener.cs +++ b/Hazel/ConnectionListener.cs @@ -24,7 +24,7 @@ namespace Hazel /// /// /// - public abstract class List : IDisposable + public abstract class ConnectionListener : IDisposable { /// /// Invoked when a new client connects. diff --git a/Hazel/NetworkConnectionListener.cs b/Hazel/NetworkConnectionListener.cs index 9e9bb72..1e5e237 100644 --- a/Hazel/NetworkConnectionListener.cs +++ b/Hazel/NetworkConnectionListener.cs @@ -8,10 +8,10 @@ using System.Text; namespace Hazel { /// - /// Abstract base class for a for network based connections. + /// Abstract base class for a for network based connections. /// /// - public abstract class NetworkConnectionListener : List + public abstract class NetworkConnectionListener : ConnectionListener { /// /// The local end point the listener is listening for new clients on. diff --git a/Hazel/NewConnectionEventArgs.cs b/Hazel/NewConnectionEventArgs.cs index 5df102c..64baad5 100644 --- a/Hazel/NewConnectionEventArgs.cs +++ b/Hazel/NewConnectionEventArgs.cs @@ -6,12 +6,12 @@ using System.Text; namespace Hazel { /// - /// Event arguments for the event. + /// Event arguments for the event. /// /// /// /// This contains the new connection for the client that connection and is passed to subscribers of the - /// event. + /// event. /// /// /// -- 2.39.5