summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@digital.ai>2020-06-06 10:21:22 +0900
committerDavid Pursehouse <dpursehouse@digital.ai>2020-06-06 10:21:22 +0900
commitc6a55c43c4f5a2335d31d5bc1c5568255eb84869 (patch)
treeeca5cd8c66f95648c86101281a3b2cd4bff1425a
parent2a30db520976c94762a33c9cae2534295065a822 (diff)
CacheBasedWebSession: Remove unnecessary 'final' in constructor args
-rw-r--r--gerrit-httpd/src/main/java/com/google/gerrit/httpd/CacheBasedWebSession.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/CacheBasedWebSession.java b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/CacheBasedWebSession.java
index 6239e3b5e7..d1950e0b48 100644
--- a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/CacheBasedWebSession.java
+++ b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/CacheBasedWebSession.java
@@ -68,7 +68,7 @@ public abstract class CacheBasedWebSession implements WebSession {
AuthConfig authConfig,
Provider<AnonymousUser> anonymousProvider,
IdentifiedUser.RequestFactory identified,
- final AccountCache byIdCache) {
+ AccountCache byIdCache) {
this.request = request;
this.response = response;
this.manager = manager;