fun addProperty()

in src/main/kotlin/software/aws/mcs/cql2cfn/cql/Properties.kt [23:28]


    fun addProperty(key: K, value: V) {
        if (containsKey(key)) {
            throw ParsingException("multiple definition for property '$key'");
        }
        put(key, value)
    }