From 6d92937892866cc7150888bc2ae0fd56ddf7fb76 Mon Sep 17 00:00:00 2001 From: 1iveowl Date: Sun, 24 Sep 2017 17:06:41 +0200 Subject: [PATCH] Fixed typo --- MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs b/MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs index 8eb47a9..90ec842 100644 --- a/MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs +++ b/MQTTnet.Core/Adapter/MqttChannelCommunicationAdapter.cs @@ -83,7 +83,7 @@ namespace MQTTnet.Core.Adapter { foreach (var packet in packets) { - if (packet == null) {continue}; + if (packet == null) {continue; } MqttTrace.Information(nameof(MqttChannelCommunicationAdapter), $"TX >>> {packet} [Timeout={timeout}]");