diff options
author | Edoardo La Greca | 2025-08-06 19:14:00 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-06 19:14:00 +0200 |
commit | 6a7229c74825478bcae3ed67ed7fabd1ad366d6b (patch) | |
tree | 82753044838acd0d0f637852b704d90055c9e5f4 /src/main | |
parent | f37b9a2baa16cd35b1d82b4bddc220107b5acb8c (diff) |
fix documentation of insecInts and insecStrs in OutMessage
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/kotlin/OutMessage.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/kotlin/OutMessage.kt b/src/main/kotlin/OutMessage.kt index 61805cb..a792224 100644 --- a/src/main/kotlin/OutMessage.kt +++ b/src/main/kotlin/OutMessage.kt @@ -16,14 +16,14 @@ import kotlin.math.pow */ class OutMessage(val type: NinePMessageType, val tag: UShort, val fieldNames: List<String>, val fieldValuesInt: Map<String, BigInteger>, val fieldValuesStr: Map<String, String>, val fieldValuesRaw: Map<String, Array<UByte>>, val maxSize: UInt) { /** - * Intersection between [fieldNames] and [fieldValuesInt]. In other words: the amount of integer fields that are - * going to be used when writing the message. + * Intersection between [fieldNames] and [fieldValuesInt]. In other words: the integer fields that are going to be + * used when writing the message. */ private val insecInts = fieldNames.intersect(fieldValuesInt.keys) /** - * Intersection between [fieldNames] and [fieldValuesStr]. In other words: the amount of string fields that are - * going to be used when writing the message. + * Intersection between [fieldNames] and [fieldValuesStr]. In other words: the string fields that are going to be + * used when writing the message. */ private val insecStrs = fieldNames.intersect(fieldValuesStr.keys) |