From 81eb5e42aa3aad29a19b97458a328542ad851cae Mon Sep 17 00:00:00 2001 From: Peter Butzhammer Date: Tue, 6 Feb 2024 13:56:00 +0100 Subject: [PATCH] Remove unused logger from internal interface --- Sharp7.Rx/Interfaces/IS7Connector.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Sharp7.Rx/Interfaces/IS7Connector.cs b/Sharp7.Rx/Interfaces/IS7Connector.cs index 1515901..612dd82 100644 --- a/Sharp7.Rx/Interfaces/IS7Connector.cs +++ b/Sharp7.Rx/Interfaces/IS7Connector.cs @@ -2,7 +2,6 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using Microsoft.Extensions.Logging; using Sharp7.Rx.Enums; namespace Sharp7.Rx.Interfaces @@ -20,7 +19,7 @@ namespace Sharp7.Rx.Interfaces Task WriteBit(Operand operand, ushort startByteAddress, byte bitAdress, bool value, ushort dbNr, CancellationToken token); Task WriteBytes(Operand operand, ushort startByteAdress, byte[] data, ushort dBNr, CancellationToken token); - ILogger Logger { get; } + Task> ExecuteMultiVarRequest(IReadOnlyList variableNames); } } \ No newline at end of file