Skip to content

Commit 0b57ce6

Browse files
committed
PLUGIN-1823: Removed empty lines
1 parent 7c8815d commit 0b57ce6

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

database-commons/src/main/java/io/cdap/plugin/db/RetryExceptions.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@
1414
* the License.
1515
*/
1616

17-
1817
package io.cdap.plugin.db;
1918

2019
import java.sql.SQLTransientException;
2120
import java.util.HashSet;
2221
import java.util.Set;
2322

24-
2523
/**
26-
* Checks whether the given exception or one of its causes is a known retryable SQLException.
24+
* Check if an exception or any of its causes is a retryable {@link java.sql.SQLTransientException}.
2725
*/
2826
public class RetryExceptions {
2927
public static boolean isRetryable(Throwable t) {

database-commons/src/main/java/io/cdap/plugin/db/source/AbstractDBSource.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ public abstract class AbstractDBSource<T extends PluginConfig & DatabaseSourceCo
8787
private static final Pattern WHERE_CONDITIONS = Pattern.compile("\\s+where \\$conditions",
8888
Pattern.CASE_INSENSITIVE);
8989
private final RetryPolicy<?> retryPolicy;
90-
9190
protected DBErrorDetailsProvider dbErrorDetailsProvider;
9291
protected final T sourceConfig;
9392
protected Class<? extends Driver> driverClass;

0 commit comments

Comments
 (0)