diff --git a/.github/workflows/nuget-projector-link.yml b/.github/workflows/nuget-projector-link.yml index a49906c..c42488a 100644 --- a/.github/workflows/nuget-projector-link.yml +++ b/.github/workflows/nuget-projector-link.yml @@ -39,11 +39,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Test new code - run: | - cat ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs | grep "string Test" - cat ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs | grep "string Test" - - name: Setup .NET Core uses: actions/setup-dotnet@v4 with: diff --git a/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs b/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs index 54103c6..a15c368 100644 --- a/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs +++ b/ThreeByte.LinkLib/ThreeByte.LinkLib.ProjectorLink/Projector.cs @@ -10,8 +10,6 @@ namespace ThreeByte.LinkLib.ProjectorLink { public class Projector : IDisposable { - public string Test => "Ukraine"; - public event EventHandler? ErrorOccurred; public string Address => $"{_hostName}/{_port}"; diff --git a/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs b/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs index 32ade43..ea30efc 100644 --- a/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs +++ b/ThreeByte.LinkLib/ThreeByte.LinkLib.TcpLink/AsyncTcpLink.cs @@ -9,8 +9,6 @@ namespace ThreeByte.LinkLib.TcpLink { public class AsyncTcpLink : IDisposable { - public string Test => "Ukraine"; - private const int BufferSize = 8092; private const int MaxDataSize = 100; private readonly ILogger _logger;