We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41b08c0 commit 256f613Copy full SHA for 256f613
dd-java-agent/appsec/src/main/java/com/datadog/appsec/api/security/ApiAccessTracker.java
@@ -22,7 +22,7 @@ public class ApiAccessTracker {
22
private static final int INTERVAL_SECONDS = 30;
23
private static final int MAX_SIZE = 4096;
24
private final Map<Long, Long> apiAccessMap; // Map<hash, timestamp>
25
- private final Deque<Long> apiAccessQueue; // hashes ordered by access time
+ private final Deque<Long> apiAccessQueue; // hashes ordered by access time
26
private final long expirationTimeInMs;
27
private final int capacity;
28
0 commit comments