Merge "Remove unnecessary throws OrmException"

This commit is contained in:
Edwin Kempin
2013-10-15 15:05:27 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 4 deletions

View File

@@ -608,7 +608,7 @@ public class ChangeHookRunner implements ChangeHooks, LifecycleListener {
@Override @Override
public void postEvent(final Branch.NameKey branchName, public void postEvent(final Branch.NameKey branchName,
final ChangeEvent event) throws OrmException { final ChangeEvent event) {
fireEvent(branchName, event); fireEvent(branchName, event);
} }

View File

@@ -188,8 +188,6 @@ public interface ChangeHooks {
* *
* @param branchName The branch that the event is related to * @param branchName The branch that the event is related to
* @param event The event to post * @param event The event to post
* @throws OrmException
*/ */
public void postEvent(Branch.NameKey branchName, ChangeEvent event) public void postEvent(Branch.NameKey branchName, ChangeEvent event);
throws OrmException;
} }