Merge branch 'stable-3.1'

* stable-3.1:
  Update git submodules
  Update git submodules
  ErrorProne: Enable and fix UnusedException check
  Update git submodules
  Update git submodules

Also fix a few more instances of UnusedException.

Change-Id: Ib3f05bb8f779f83712c6259522c26b42e93ea44b
This commit is contained in:
David Pursehouse
2020-01-24 17:20:42 +09:00
103 changed files with 232 additions and 147 deletions

View File

@@ -98,7 +98,7 @@ public class PatchScriptFactoryForAutoFix implements Callable<PatchScript> {
try {
permissionBackend.currentUser().change(notes).check(ChangePermission.READ);
} catch (AuthException e) {
throw new NoSuchChangeException(changeId);
throw new NoSuchChangeException(changeId, e);
}
if (!projectCache.checkedGet(notes.getProjectName()).statePermitsRead()) {