From eb47587109205bf6e92bc489b281f4ee8d137441 Mon Sep 17 00:00:00 2001 From: Frank Viernau Date: Fri, 19 Apr 2024 10:28:12 +0200 Subject: [PATCH] chore(model): Drop a TODO comment The TODO comment refers to a large amount of configuration parameters which are likely not supposed to be added in their entirety. So, drop the comment as there seems little value to have it. Further parameters will be added when need arises. Signed-off-by: Frank Viernau --- model/src/main/kotlin/config/PostgresConnection.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/model/src/main/kotlin/config/PostgresConnection.kt b/model/src/main/kotlin/config/PostgresConnection.kt index 3752b8d116bce..64726283a611f 100644 --- a/model/src/main/kotlin/config/PostgresConnection.kt +++ b/model/src/main/kotlin/config/PostgresConnection.kt @@ -117,9 +117,4 @@ data class PostgresConnection( */ @JsonInclude(Include.NON_NULL) val minimumIdle: Int? = null - - /** - * TODO: Make additional parameters configurable, see: - * https://jdbc.postgresql.org/documentation/head/connect.html - */ )