Skip to content

Commit f4e657f

Browse files
committed
Move Exception to a new line
1 parent a6a6b5b commit f4e657f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/embulk/output/sftp/SftpFileOutput.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ interface Retriable<T>
260260
public T execute() throws Exception;
261261
}
262262

263-
private <T> T withConnectionRetry(final Retriable<T> op) throws Exception
263+
private <T> T withConnectionRetry(final Retriable<T> op)
264+
throws Exception
264265
{
265266
int count = 0;
266267
while (true) {

0 commit comments

Comments
 (0)