[kotlin][client] Add new line at the end of all files (#16062)

* [kotlin][client] add new line at end of files

* [kotlin][client] add new line at end of files
This commit is contained in:
Bruno Coelho
2023-07-11 10:07:06 +01:00
committed by GitHub
parent ceb48d3af4
commit f31c2a4b17
221 changed files with 221 additions and 221 deletions

View File

@@ -1,2 +1,2 @@
rootProject.name = 'kotlin-default-values-jvm-okhttp4'
rootProject.name = 'kotlin-default-values-jvm-okhttp4'

View File

@@ -20,4 +20,4 @@ fun <T : Any?> toMultiValue(items: Iterable<T>, collectionFormat: String, map: (
"multi" -> items.map(map)
else -> listOf(items.joinToString(separator = collectionDelimiter(collectionFormat), transform = map))
}
}
}

View File

@@ -15,4 +15,4 @@ open class ServerException(message: kotlin.String? = null, val statusCode: Int =
companion object {
private const val serialVersionUID: Long = 456L
}
}
}

View File

@@ -15,4 +15,4 @@ data class RequestConfig<T>(
val query: MutableMap<String, List<String>> = mutableMapOf(),
val requiresAuthentication: Boolean,
val body: T? = null
)
)

View File

@@ -5,4 +5,4 @@ package org.openapitools.client.infrastructure
*/
enum class RequestMethod {
GET, DELETE, HEAD, OPTIONS, PATCH, POST, PUT
}
}