Remove StorageException from throws clauses
Change-Id: I48a0169293ddf766fbbd924cb310f9b8dacc58cf
This commit is contained in:
@@ -14,7 +14,6 @@
|
||||
|
||||
package com.google.gerrit.server.query.change;
|
||||
|
||||
import com.google.gerrit.exceptions.StorageException;
|
||||
import com.google.gerrit.reviewdb.client.Account;
|
||||
import com.google.gerrit.server.index.change.ChangeField;
|
||||
|
||||
@@ -27,7 +26,7 @@ public class EditByPredicate extends ChangeIndexPredicate {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean match(ChangeData cd) throws StorageException {
|
||||
public boolean match(ChangeData cd) {
|
||||
return cd.editsByUser().contains(id);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user