CoapClient

- Removed `watcherSignal` as unused
This commit is contained in:
Tristan B. Velloza Kildaire 2023-09-26 19:29:11 +02:00
parent f36f39f2f4
commit b4af82599b
1 changed files with 0 additions and 6 deletions

View File

@ -40,11 +40,6 @@ public class CoapClient
*/
private Mutex requestsLock;
/**
* Condition variable for watcher signalling
*/
private Condition watcherSignal;
/**
* Rolling Message ID
*/
@ -66,7 +61,6 @@ public class CoapClient
this.messaging = new UDPMessaging(this); //UDP transport
this.requestsLock = new Mutex();
this.watcherSignal = new Condition(this.requestsLock);
this.rollingMid = 0;
this.rollingLock = new Mutex();