Skip to content

Commit 7e54d4f

Browse files
committed
Fix warnings.
1 parent d5e3797 commit 7e54d4f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

nanoFramework.Aws.IoTCore.Devices/MqttConnectionClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ namespace nanoFramework.Aws.IoTCore.Devices
1616
{
1717
/// <summary>
1818
/// AWS IoT Core MQTT Connection Client for .NET nanoFramework
19-
/// <cref="https://github.com/aws/aws-sdk-net/blob/master/sdk/src/Services/IotData/Generated/_netstandard/AmazonIotDataClient.cs"/>
20-
/// <cref="https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/master/src"/>
21-
/// <cref="https://docs.aws.amazon.com/iot/latest/developerguide/device-shadow-mqtt.html"/>
2219
/// </summary>
20+
/// <seealso cref="https://github.com/aws/aws-sdk-net/blob/master/sdk/src/Services/IotData/Generated/_netstandard/AmazonIotDataClient.cs"/>
21+
/// <seealso cref="https://github.com/aws/aws-iot-device-sdk-embedded-C/tree/master/src"/>
22+
/// <seealso cref="https://docs.aws.amazon.com/iot/latest/developerguide/device-shadow-mqtt.html"/>
23+
2324
public class MqttConnectionClient : IDisposable
2425
{
2526
/// <summary>
@@ -48,7 +49,6 @@ public enum QoSLevel
4849

4950
private M2Mqtt.MqttClient _mqttc;
5051
private readonly ConnectorState _mqttBrokerStatus = new ConnectorState();
51-
private readonly ArrayList _methodCallback = new ArrayList();
5252
private readonly ArrayList _waitForConfirmation = new ArrayList();
5353
private readonly object _lock = new object();
5454
private Timer _timerTokenRenew;

nanoFramework.Aws.IoTCore.Devices/WebsocketConnectionClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class WebsocketConnectionClient// : IDisposable
1111
/// <summary>
1212
/// Creates a new WebSocket Connection Client
1313
/// </summary>
14-
WebsocketConnectionClient()
14+
public WebsocketConnectionClient()
1515
{
1616
//TODO: implement!
1717
throw new NotImplementedException();

0 commit comments

Comments
 (0)