Don't use single letter catch variables
Update existing catch blocks to ensure that `ex` is always used in preference to `e` or `t` as the variable name. Issue: SPR-16968
This commit is contained in:
committed by
Juergen Hoeller
parent
8f9aa06dfe
commit
0ad0f341bd
@@ -160,7 +160,7 @@ class DefaultMvcResult implements MvcResult {
|
||||
try {
|
||||
return this.asyncDispatchLatch.await(timeout, TimeUnit.MILLISECONDS);
|
||||
}
|
||||
catch (InterruptedException e) {
|
||||
catch (InterruptedException ex) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user