From d1560f25aaeeeefdb2fd7a65f5beca09dc11212a Mon Sep 17 00:00:00 2001 From: usbharu Date: Tue, 10 Sep 2024 23:14:47 +0000 Subject: [PATCH] style: fix lint (CI) --- .../hideout/core/infrastructure/exposed/UriColumnType.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/infrastructure/exposed/UriColumnType.kt b/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/infrastructure/exposed/UriColumnType.kt index 57c22b9c..06f2388b 100644 --- a/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/infrastructure/exposed/UriColumnType.kt +++ b/hideout-core/src/main/kotlin/dev/usbharu/hideout/core/infrastructure/exposed/UriColumnType.kt @@ -19,4 +19,4 @@ class UriColumnType(val colLength: Int) : ColumnType() { override fun notNullValueToDB(value: URI): Any = value.toString() } -fun Table.uri(name: String, colLength: Int): Column = registerColumn(name, UriColumnType(colLength)) \ No newline at end of file +fun Table.uri(name: String, colLength: Int): Column = registerColumn(name, UriColumnType(colLength))