From 40c2be0c9d5bfe67ffe69ad1e9c9fdb49a7f67b7 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 26 Oct 2021 10:25:27 +0200 Subject: [PATCH] Polishing. Reformat code. [#453][resolves #460] Signed-off-by: Mark Paluch --- .../r2dbc/postgresql/PostgresqlConnectionFactoryProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/r2dbc/postgresql/PostgresqlConnectionFactoryProvider.java b/src/main/java/io/r2dbc/postgresql/PostgresqlConnectionFactoryProvider.java index 44f0e7c7..6c163bb5 100644 --- a/src/main/java/io/r2dbc/postgresql/PostgresqlConnectionFactoryProvider.java +++ b/src/main/java/io/r2dbc/postgresql/PostgresqlConnectionFactoryProvider.java @@ -288,7 +288,7 @@ private static PostgresqlConnectionConfiguration.Builder fromConnectionFactoryOp private static void setupSsl(PostgresqlConnectionConfiguration.Builder builder, OptionMapper mapper) { mapper.from(SSL).map(OptionMapper::toBoolean).to(enableSsl -> { - if(enableSsl) { + if (enableSsl) { builder.enableSsl(); } });