Remove unneeded throws

Change-Id: I3d3ae1f7232e500aa16789c8408442710e9ccada
This commit is contained in:
Hugo Arès
2017-12-12 20:37:04 -05:00
parent 6016115153
commit 0c4ef7b45e

View File

@@ -1548,11 +1548,11 @@ public abstract class AbstractDaemonTest {
saveProjectConfig(project, cfg);
}
protected void fail(@Nullable String format, Object... args) throws Exception {
protected void fail(@Nullable String format, Object... args) {
assert_().fail(format, args);
}
protected void fail() throws Exception {
protected void fail() {
assert_().fail();
}