Quellcode durchsuchen

Fix code style

release/3.x.x
Israel Lot vor 6 Jahren
Ursprung
Commit
cd09a2f176
2 geänderte Dateien mit 2 neuen und 5 gelöschten Zeilen
  1. +1
    -4
      Frameworks/MQTTnet.NetStandard/Adapter/MqttChannelAdapter.cs
  2. +1
    -1
      Frameworks/MQTTnet.NetStandard/Exceptions/MqttCommunicationTimedOutException.cs

+ 1
- 4
Frameworks/MQTTnet.NetStandard/Adapter/MqttChannelAdapter.cs Datei anzeigen

@@ -84,10 +84,7 @@ namespace MQTTnet.Adapter

}

if (cancellationToken.IsCancellationRequested)
{
return;
}

});
}


+ 1
- 1
Frameworks/MQTTnet.NetStandard/Exceptions/MqttCommunicationTimedOutException.cs Datei anzeigen

@@ -4,7 +4,7 @@ namespace MQTTnet.Exceptions
{
public sealed class MqttCommunicationTimedOutException : MqttCommunicationException
{
public MqttCommunicationTimedOutException() : base() { }
public MqttCommunicationTimedOutException() { }
public MqttCommunicationTimedOutException(Exception innerException) : base(innerException) { }

}


Laden…
Abbrechen
Speichern