From 0ad0f341bdd1da1518fd5adc9b9f22a3a6980976 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 20 Jun 2018 19:44:13 -0700 Subject: [PATCH] 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 --- .../interceptor/CacheRemoveEntryInterceptor.java | 8 ++++---- .../scheduling/concurrent/ThreadPoolTaskScheduler.java | 4 ++-- .../test/web/servlet/DefaultMvcResult.java | 2 +- .../request/async/CallableInterceptorChain.java | 10 +++++----- .../web/reactive/function/server/RouterFunctions.java | 4 ++-- .../socket/adapter/StandardWebSocketSession.java | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/CacheRemoveEntryInterceptor.java b/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/CacheRemoveEntryInterceptor.java index 19bbc2c27b..34d4fb4f05 100644 --- a/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/CacheRemoveEntryInterceptor.java +++ b/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/CacheRemoveEntryInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2014 the original author or authors. + * Copyright 2002-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -54,12 +54,12 @@ class CacheRemoveEntryInterceptor extends AbstractKeyCacheInterceptor