Skip to content

Commit 0e6a6b0

Browse files
jpicklykclaude
andcommitted
fix: ktlint formatting for multiline expression in findByIdPrefix
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0d4293b commit 0e6a6b0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

current/src/main/kotlin/io/github/jpicklyk/mcptask/current/infrastructure/repository/SQLiteWorkItemRepository.kt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,9 +373,10 @@ class SQLiteWorkItemRepository(
373373
// H2 uses RAWTOHEX() for native UUID columns; SQLite uses HEX() for BLOB columns.
374374
// Both produce uppercase hex without dashes — wrap in LOWER for case-insensitive match.
375375
val hexFunctionName = if (currentDialect is H2Dialect) "RAWTOHEX" else "HEX"
376-
val hexId = LowerCase(
377-
CustomFunction(hexFunctionName, VarCharColumnType(32), WorkItemsTable.id)
378-
)
376+
val hexId =
377+
LowerCase(
378+
CustomFunction(hexFunctionName, VarCharColumnType(32), WorkItemsTable.id),
379+
)
379380
val items =
380381
WorkItemsTable
381382
.selectAll()

0 commit comments

Comments
 (0)