Skip to content

Commit dd91398

Browse files
committed
fix: checkstyle
1 parent 1632841 commit dd91398

File tree

6 files changed

+4
-9
lines changed

6 files changed

+4
-9
lines changed

core/src/main/java/tech/illuin/pipeline/CompositePipeline.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package tech.illuin.pipeline;
22

3-
import io.micrometer.core.instrument.MeterRegistry;
43
import io.micrometer.tracing.Span;
54
import io.micrometer.tracing.Tracer;
65
import org.slf4j.Logger;
@@ -50,7 +49,7 @@
5049
* <li>0 to n {@link tech.illuin.pipeline.close.OnCloseHandler} responsible for cleaning up when tearing down the pipeline</li>
5150
* </ul>
5251
* <p>The pipeline references an {@link java.util.concurrent.ExecutorService} which the pipeline will attempt to close when its own close() method is called.</p>
53-
* <p>It will additionally handle a variety of {@link MeterRegistry} counters reflecting the activity of its components.</p>
52+
* <p>It will additionally handle a variety of {@link io.micrometer.core.instrument.MeterRegistry} counters reflecting the activity of its components.</p>
5453
*
5554
* @author Pierre Lecerf ([email protected])
5655
*/

core/src/main/java/tech/illuin/pipeline/builder/runner_compiler/GenericRunnerCompiler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import java.lang.reflect.Method;
1111
import java.lang.reflect.Parameter;
1212
import java.util.ArrayList;
13-
import java.util.Collections;
1413
import java.util.List;
1514

1615
/**

core/src/main/java/tech/illuin/pipeline/execution/phase/impl/InitializerPhase.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ public InitializerPhase(
5555
}
5656

5757
@Override
58+
@SuppressWarnings("IllegalCatch")
5859
public PipelineStrategy run(IO<I> io, Context context, MetricTags tags) throws Exception
5960
{
6061
if (context == null)

core/src/main/java/tech/illuin/pipeline/input/initializer/builder/InitializerMethodValidators.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
import tech.illuin.pipeline.builder.runner_compiler.MethodValidator;
44
import tech.illuin.pipeline.input.initializer.builder.runner_compiler.NonVoidReturnType;
55

6-
import java.lang.reflect.Method;
7-
import java.util.List;
8-
import java.util.Optional;
9-
106
/**
117
* @author Pierre Lecerf ([email protected])
128
*/

core/src/main/java/tech/illuin/pipeline/sink/builder/SinkMethodValidators.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
import tech.illuin.pipeline.builder.runner_compiler.MethodValidator;
44

5-
import java.util.List;
6-
75
/**
86
* @author Pierre Lecerf ([email protected])
97
*/

core/src/main/java/tech/illuin/pipeline/step/execution/interruption/Interruption.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
public interface Interruption extends Result
88
{
99
ComponentTag tag();
10+
1011
Context context();
12+
1113
String message();
1214

1315
static Interruption of(ComponentTag tag, Context context, String message)

0 commit comments

Comments
 (0)