Skip to content

Commit 0e6a1f4

Browse files
committed
Formatting
1 parent 9021c78 commit 0e6a1f4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sentry/src/main/java/io/sentry/SentryExecutorService.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,10 @@ public void prewarm() {
130130
executorService.schedule(dummyRunnable, Long.MAX_VALUE, TimeUnit.DAYS);
131131
}
132132
});
133-
executorService.submit(() -> {
134-
executorService.getQueue().clear();
135-
});
133+
executorService.submit(
134+
() -> {
135+
executorService.getQueue().clear();
136+
});
136137
}
137138

138139
private static final class SentryExecutorServiceThreadFactory implements ThreadFactory {

0 commit comments

Comments
 (0)