Skip to content

Commit ba56765

Browse files
committed
Format code
1 parent 9021c78 commit ba56765

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)