Skip to content

Commit 783e709

Browse files
checkstyle fixes
1 parent ba141c4 commit 783e709

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

wrapper/src/main/java/software/amazon/jdbc/plugin/limitless/LimitlessRouterServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public class LimitlessRouterServiceImpl implements LimitlessRouterService {
4242
protected final LimitlessQueryHelper queryHelper;
4343
protected final LimitlessRouterMonitorInitializer limitlessRouterMonitorInitializer;
4444

45-
protected static final SlidingExpirationCacheWithCleanupThread<String, LimitlessRouterMonitor> limitlessRouterMonitors =
46-
new SlidingExpirationCacheWithCleanupThread<>(
45+
protected static final SlidingExpirationCacheWithCleanupThread<String, LimitlessRouterMonitor>
46+
limitlessRouterMonitors = new SlidingExpirationCacheWithCleanupThread<>(
4747
limitlessRouterMonitor -> true,
4848
limitlessRouterMonitor -> {
4949
try {

wrapper/src/main/java/software/amazon/jdbc/util/SlidingExpirationCache.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,6 @@ public V computeIfAbsent(
9595
return cacheItem.withExtendExpiration(itemExpirationNano).item;
9696
}
9797

98-
/**
99-
*
100-
* @param key the key with which the specified value is to be associated
101-
* @param value the function to compute a value
102-
* @param itemExpirationNano the expiration time of the new or renewed entry
103-
* @return
104-
*/
10598
public V put(
10699
final K key,
107100
final V value,

0 commit comments

Comments
 (0)