Skip to content

Commit a88d630

Browse files
committed
Spotless!
1 parent 7d2db6b commit a88d630

File tree

1 file changed

+2
-1
lines changed
  • dd-java-agent/agent-profiling/profiling-controller-openjdk/src/test/java/com/datadog/profiling/controller/openjdk/events

1 file changed

+2
-1
lines changed

dd-java-agent/agent-profiling/profiling-controller-openjdk/src/test/java/com/datadog/profiling/controller/openjdk/events/SmapEntryCacheTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ void getEvents() throws Exception {
1818
assumeTrue(OperatingSystem.isLinux());
1919
// We need at least Java 22 for the annotated regions
2020
assumeTrue(JavaVirtualMachine.isJavaVersionAtLeast(22));
21-
SmapEntryCache smapEntryCache = new SmapEntryCache(Duration.ofHours(1)); // set up a really long expiration duration
21+
SmapEntryCache smapEntryCache =
22+
new SmapEntryCache(Duration.ofHours(1)); // set up a really long expiration duration
2223
List<SmapEntryEvent> events1 = smapEntryCache.getEvents();
2324
List<SmapEntryEvent> events2 = smapEntryCache.getEvents();
2425
// the cache is using double buffered event list so we can use identity comparison

0 commit comments

Comments
 (0)