Skip to content

Commit 56cc3e8

Browse files
committed
removed extra whitespace in MAX_CACHE_BYTES declaration
1 parent 0a3c08c commit 56cc3e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/example/CacheFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111
public class CacheFilter {
1212
private static final int MAX_CACHE_ENTRIES = 100;
13-
private static final long MAX_CACHE_BYTES = 50 * 1024 * 1024; // 50MB
13+
private static final long MAX_CACHE_BYTES = 50 * 1024 * 1024;// 50MB
1414

1515
// Lock-free concurrent cache
1616
private final ConcurrentHashMap<String, CacheEntry> cache =

0 commit comments

Comments
 (0)