diff options
Diffstat (limited to 'src/main/kotlin/OutMessage.kt')
-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) |