Skip to content

Commit cb5c713

Browse files
committed
fix: format
1 parent 2b7e625 commit cb5c713

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/workflow/builder/WorkflowBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import java.util.concurrent.ExecutorService;
77

88
import io.fabric8.kubernetes.api.model.HasMetadata;
9-
import io.javaoperatorsdk.operator.api.config.ConfigurationServiceProvider;
109
import io.javaoperatorsdk.operator.api.config.ExecutorServiceManager;
1110
import io.javaoperatorsdk.operator.api.reconciler.dependent.DependentResource;
1211
import io.javaoperatorsdk.operator.processing.dependent.workflow.Condition;
@@ -77,7 +76,8 @@ public WorkflowBuilder<P> withThrowExceptionFurther(boolean throwExceptionFurthe
7776

7877
public Workflow<P> build() {
7978
return new Workflow(
80-
dependentResourceNodes, ExecutorServiceManager.instance().executorService(), throwExceptionAutomatically);
79+
dependentResourceNodes, ExecutorServiceManager.instance().executorService(),
80+
throwExceptionAutomatically);
8181
}
8282

8383
public Workflow<P> build(int parallelism) {

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public void run() {
390390
final var name = thread.getName();
391391
try {
392392
MDCUtils.addResourceInfo(executionScope.getResource());
393-
thread.setName("ReconcilerExecutor-" + controllerName+"-"+thread.getId());
393+
thread.setName("ReconcilerExecutor-" + controllerName + "-" + thread.getId());
394394
PostExecutionControl<R> postExecutionControl =
395395
reconciliationDispatcher.handleExecution(executionScope);
396396
eventProcessingFinished(executionScope, postExecutionControl);

sample-operators/webpage/src/main/java/io/javaoperatorsdk/operator/sample/WebPageOperator.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package io.javaoperatorsdk.operator.sample;
22

33
import java.io.IOException;
4-
import java.util.function.Consumer;
54

6-
import io.javaoperatorsdk.operator.api.config.ConfigurationServiceOverrider;
75
import org.slf4j.Logger;
86
import org.slf4j.LoggerFactory;
97
import org.takes.facets.fork.FkRegex;

0 commit comments

Comments
 (0)