From: Forest Date: Thu, 27 Dec 2018 22:32:59 +0000 (-0800) Subject: Undo an accidental class name change X-Git-Tag: 1.0.0~63 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=dca91cdc709a848d7c3b2a6751515b363ca03df9;p=rhonda%2Fimpostor.hazel.git Undo an accidental class name change --- 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. /// /// ///