Parcourir la source

Fix code style

release/3.x.x
Israel Lot il y a 6 ans
Parent
révision
cd09a2f176
2 fichiers modifiés avec 2 ajouts et 5 suppressions
  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 Voir le fichier

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

}

if (cancellationToken.IsCancellationRequested)
{
return;
}

});
}


+ 1
- 1
Frameworks/MQTTnet.NetStandard/Exceptions/MqttCommunicationTimedOutException.cs Voir le fichier

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

}


Chargement…
Annuler
Enregistrer