From 8f549e806294d36080327af27c835a07b273819e Mon Sep 17 00:00:00 2001 From: Chris Ashcraft Date: Tue, 5 Nov 2024 16:20:36 -0500 Subject: [PATCH] spotlessApply --- .../org/apache/beam/sdk/io/jdbc/JdbcIO.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java b/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java index 20fa90a5cfa5..946c07f55763 100644 --- a/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java +++ b/sdks/java/io/jdbc/src/main/java/org/apache/beam/sdk/io/jdbc/JdbcIO.java @@ -811,9 +811,9 @@ public ReadRows withOutputParallelization(boolean outputParallelization) { } /** - * Whether to disable auto commit on read. Defaults to true if not provided. - * The need for this config varies depending on the database platform. - * Informix requires this to be set to false while Postgres requires this to be set to true. + * Whether to disable auto commit on read. Defaults to true if not provided. The need for this + * config varies depending on the database platform. Informix requires this to be set to false + * while Postgres requires this to be set to true. */ public ReadRows withDisableAutoCommit(boolean disableAutoCommit) { return toBuilder().setDisableAutoCommit(disableAutoCommit).build(); @@ -985,9 +985,9 @@ public Read withOutputParallelization(boolean outputParallelization) { } /** - * Whether to disable auto commit on read. Defaults to true if not provided. - * The need for this config varies depending on the database platform. - * Informix requires this to be set to false while Postgres requires this to be set to true. + * Whether to disable auto commit on read. Defaults to true if not provided. The need for this + * config varies depending on the database platform. Informix requires this to be set to false + * while Postgres requires this to be set to true. */ public Read withDisableAutoCommit(boolean disableAutoCommit) { return toBuilder().setDisableAutoCommit(disableAutoCommit).build(); @@ -1168,9 +1168,9 @@ public ReadAll withOutputParallelization(boolean outputPara } /** - * Whether to disable auto commit on read. Defaults to true if not provided. - * The need for this config varies depending on the database platform. - * Informix requires this to be set to false while Postgres requires this to be set to true. + * Whether to disable auto commit on read. Defaults to true if not provided. The need for this + * config varies depending on the database platform. Informix requires this to be set to false + * while Postgres requires this to be set to true. */ public ReadAll withDisableAutoCommit(boolean disableAutoCommit) { return toBuilder().setDisableAutoCommit(disableAutoCommit).build(); @@ -1393,9 +1393,9 @@ public ReadWithPartitions withFetchSize(int fetchSize) { } /** - * Whether to disable auto commit on read. Defaults to true if not provided. - * The need for this config varies depending on the database platform. - * Informix requires this to be set to false while Postgres requires this to be set to true. + * Whether to disable auto commit on read. Defaults to true if not provided. The need for this + * config varies depending on the database platform. Informix requires this to be set to false + * while Postgres requires this to be set to true. */ public ReadWithPartitions withDisableAutoCommit( boolean disableAutoCommit) {