remove empty try-catch brace

This commit is contained in:
CloverHearts 2016-08-24 00:31:12 +09:00
parent 33b0732b2c
commit 92c8a10fb7

View file

@ -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());
}
}
}