CoapClient

- Made `newMid()` private and final
- Added documentation for `newMid()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-09-25 21:19:56 +02:00
parent b985ad04d9
commit ae97035035

View File

@ -74,7 +74,12 @@ public class CoapClient
init();
}
package ushort newMid()
/**
* Generates a new message ID
*
* Returns: the next message id
*/
private final ushort newMid()
{
ushort newValue;