mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
remove empty try-catch brace
This commit is contained in:
parent
33b0732b2c
commit
92c8a10fb7
1 changed files with 1 additions and 5 deletions
|
|
@ -461,11 +461,7 @@ public class Note implements Serializable, ParagraphJobListener {
|
|||
AuthenticationInfo authenticationInfo = new AuthenticationInfo();
|
||||
authenticationInfo.setUser(cronExecutingUser);
|
||||
p.setAuthenticationInfo(authenticationInfo);
|
||||
try {
|
||||
run(p.getId());
|
||||
} catch (InterpreterException intpException) {
|
||||
throw intpException;
|
||||
}
|
||||
run(p.getId());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue