Fix a few issues that appeared during refactoring.
This commit is contained in:
parent
d4701f963d
commit
8e3c90d5aa
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ namespace PixelHub.Server
|
|||
/// Starts listening for and handling messages that come from the remote PixelBot.
|
||||
/// </summary>
|
||||
/// <param name="client">Client.</param>
|
||||
public async Task Handle(TcpClient client)
|
||||
public async Task Handle()
|
||||
{
|
||||
if (Connected)
|
||||
throw new InvalidOperationException("Only one connection handling loop can be active at once!");
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace PixelHub
|
|||
/// <summary>
|
||||
/// Specifies a single command that is to be sent to a PixelBot.
|
||||
/// </summary>
|
||||
class PixelCommand
|
||||
public class PixelCommand
|
||||
{
|
||||
/// <summary>
|
||||
/// The wheel(s) that should be operated upon.
|
||||
|
|
Reference in a new issue