All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ecwid.apiclient.v3.dto.common.OrderedStringToStringMap.kt Maven / Gradle / Ivy

package com.ecwid.apiclient.v3.dto.common

import java.util.*

open class OrderedStringToStringMap : TreeMap {

	@Suppress("unused")
	constructor() : super()

	constructor(map: Map?) {
		if (map != null) {
			super.putAll(map)
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy