File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
server/src/main/java/org/elasticsearch/common/util/concurrent Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 (", " )
You can’t perform that action at this time.
0 commit comments