Skip to content

Commit 5d7c99e

Browse files
committed
nits: remove redundant annotations
1 parent c699834 commit 5d7c99e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/de/rwth/idsg/steve/ocpp/ws/pipeline/OutgoingCallPipeline.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020

2121
import de.rwth.idsg.steve.ocpp.ws.FutureResponseContextStore;
2222
import de.rwth.idsg.steve.ocpp.ws.data.CommunicationContext;
23-
import lombok.extern.slf4j.Slf4j;
24-
import org.springframework.beans.factory.annotation.Autowired;
2523
import org.springframework.stereotype.Component;
2624

2725
import java.util.function.Consumer;
@@ -33,12 +31,10 @@
3331
* @since 27.03.2015
3432
*/
3533
@Component
36-
@Slf4j
3734
public class OutgoingCallPipeline implements Consumer<CommunicationContext> {
3835

3936
private final Consumer<CommunicationContext> chainedConsumers;
4037

41-
@Autowired
4238
public OutgoingCallPipeline(FutureResponseContextStore store) {
4339
chainedConsumers = OutgoingCallPipeline.start(Serializer.INSTANCE)
4440
.andThen(Sender.INSTANCE)

0 commit comments

Comments
 (0)