Skip to content

Commit

Permalink
removed t param
Browse files Browse the repository at this point in the history
  • Loading branch information
baetz-daniel committed Jul 30, 2019
1 parent 67973d3 commit 460bf3e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion Exomia.Network/ClientActionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace Exomia.Network
/// <summary>
/// Called than a client action occurs.
/// </summary>
/// <typeparam name="T"> Socket|EndPoint. </typeparam>
/// <typeparam name="TServerClient"> Type of the server client. </typeparam>
/// <param name="server"> The server. </param>
/// <param name="client"> The client. </param>
Expand Down
1 change: 0 additions & 1 deletion Exomia.Network/ClientDisconnectHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace Exomia.Network
/// <summary>
/// Called than a client disconnects from the server.
/// </summary>
/// <typeparam name="T"> Socket|EndPoint. </typeparam>
/// <typeparam name="TServerClient"> Type of the server client. </typeparam>
/// <param name="server"> The server. </param>
/// <param name="client"> The client. </param>
Expand Down
1 change: 0 additions & 1 deletion Exomia.Network/IServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ namespace Exomia.Network
/// <summary>
/// Interface for server.
/// </summary>
/// <typeparam name="T"> Generic type parameter. </typeparam>
/// <typeparam name="TServerClient"> Type of the server client. </typeparam>
public interface IServer<in TServerClient> : IDisposable
where TServerClient : IServerClient
Expand Down
1 change: 0 additions & 1 deletion Exomia.Network/Lib/ServerClientEventEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace Exomia.Network.Lib
/// <summary>
/// A server client event entry. This class cannot be inherited.
/// </summary>
/// <typeparam name="T"> Generic type parameter. </typeparam>
/// <typeparam name="TServerClient"> Type of the server client. </typeparam>
sealed class ServerClientEventEntry<TServerClient>
where TServerClient : IServerClient
Expand Down

0 comments on commit 460bf3e

Please sign in to comment.