Skip to content

Commit

Permalink
Make InMemoryRegistrationStorage.logger static final
Browse files Browse the repository at this point in the history
  • Loading branch information
emlun committed Oct 21, 2021
1 parent c6aed4c commit 3891ecf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class InMemoryRegistrationStorage implements CredentialRepository {
private final Cache<String, Set<CredentialRegistration>> storage =
CacheBuilder.newBuilder().maximumSize(1000).expireAfterAccess(1, TimeUnit.DAYS).build();

private Logger logger = LoggerFactory.getLogger(InMemoryRegistrationStorage.class);
private static final Logger logger = LoggerFactory.getLogger(InMemoryRegistrationStorage.class);

////////////////////////////////////////////////////////////////////////////////
// The following methods are required by the CredentialRepository interface.
Expand Down

0 comments on commit 3891ecf

Please sign in to comment.