Skip to content

Commit

Permalink
chore: fix ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Jun 26, 2024
1 parent 2bfd103 commit 1a06645
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ class ProjectBuilder(
fun addWebhookConfig(ft: FT<WebhookConfig>) = addOperation(data.webhookConfigs, ft)

fun addSlackConfig(ft: FT<SlackConfig>) = addOperation(data.slackConfigs, ft)

fun addBatchJob(ft: FT<BatchJob>) = addOperation(data.batchJobs, ft)

fun setImportSettings(ft: FT<ImportSettings>) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TranslationViewDataProvider(
}
return PageImpl(views, pageable, count)
}

private fun createFailedKeysInJobTempTable(filterFailedKeysOfJob: Long?) {
if (filterFailedKeysOfJob == null) {
return
Expand All @@ -73,7 +73,7 @@ class TranslationViewDataProvider(
)
SELECT DISTINCT (target -> 'keyId')\:\:bigint AS key_id
FROM unsuccessful_targets;
"""
""",
)
.setParameter("batchJobId", filterFailedKeysOfJob)
.executeUpdate()
Expand All @@ -84,7 +84,6 @@ class TranslationViewDataProvider(
.executeUpdate()
}


fun getSelectAllKeys(
projectId: Long,
languages: Set<LanguageDto>,
Expand Down

0 comments on commit 1a06645

Please sign in to comment.