Remove usages of Throwables#propagate
Guava intends to deprecate these, and recommends explicitly wrapping with RuntimeException instead. Change-Id: Id148cb96164d31fae2d12945baa6db462b31fd36
This commit is contained in:
@@ -17,7 +17,6 @@ package com.google.gerrit.common;
|
|||||||
import com.google.common.base.Optional;
|
import com.google.common.base.Optional;
|
||||||
import com.google.common.base.Supplier;
|
import com.google.common.base.Supplier;
|
||||||
import com.google.common.base.Suppliers;
|
import com.google.common.base.Suppliers;
|
||||||
import com.google.common.base.Throwables;
|
|
||||||
import com.google.common.collect.Sets;
|
import com.google.common.collect.Sets;
|
||||||
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
import com.google.gerrit.common.data.LabelType;
|
import com.google.gerrit.common.data.LabelType;
|
||||||
@@ -845,7 +844,7 @@ public class ChangeHookRunner implements ChangeHooks, LifecycleListener,
|
|||||||
return eventFactory.asPatchSetAttribute(
|
return eventFactory.asPatchSetAttribute(
|
||||||
revWalk, change, patchSet);
|
revWalk, change, patchSet);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw Throwables.propagate(e);
|
throw new RuntimeException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Submodule plugins/replication updated: 77ae05e49c...8419e92cb0
Reference in New Issue
Block a user