Merge branch 'stable-2.16' into stable-3.0

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

Also fix a few more instances of UnusedException.

Change-Id: Ia9864e78004f17508e13f4bf49d895d470da4942
This commit is contained in:
David Pursehouse
2020-01-24 09:21:23 +09:00
100 changed files with 232 additions and 147 deletions

View File

@@ -111,7 +111,7 @@ public class ChangeArgumentParser {
try {
changeResource = changesCollection.parse(cId);
} catch (RestApiException e) {
throw new UnloggedFailure(1, "\"" + id + "\" no such change");
throw new UnloggedFailure(1, "\"" + id + "\" no such change", e);
}
changes.put(cId, changeResource);
}