Skip to content

Commit b74d1bf

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 9be04eb commit b74d1bf

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

server/src/main/java/org/elasticsearch/common/util/concurrent/EsExecutorService.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ public interface EsExecutorService extends ExecutorService {
2828

2929
int getLargestPoolSize();
3030

31-
32-
3331
// FIXME is this required?! Any usage outside of tests? Investigate InternalWatchExecutor?
34-
default Stream<Runnable> getTasks(){
32+
default Stream<Runnable> getTasks() {
3533
return Stream.empty();
3634
}
3735

server/src/main/java/org/elasticsearch/common/util/concurrent/TaskTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ boolean trackingMaxQueueLatency() {
181181
return trackMaxQueueLatency;
182182
}
183183

184-
void appendTaskExecutionDetails(StringBuilder sb){
184+
void appendTaskExecutionDetails(StringBuilder sb) {
185185
sb.append("task execution EWMA = ")
186186
.append(TimeValue.timeValueNanos((long) getTaskExecutionEWMA()))
187187
.append(", ")

0 commit comments

Comments
 (0)