Skip to content

Commit

Permalink
Remove CoapRequestLogger
Browse files Browse the repository at this point in the history
  • Loading branch information
akolosov-n committed Sep 4, 2024
1 parent 3b7e093 commit 7b725a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 173 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public final class CoapDispatcher {
private final Function<SeparateResponse, Boolean> handleSeparateResponse;

public CoapDispatcher(Service<CoapPacket, Boolean> sender,
Service<CoapPacket, CoapPacket> observationHandler, Service<CoapPacket, CoapPacket> inboundService,
Function<CoapPacket, Boolean> handleResponse, Function<SeparateResponse, Boolean> handleSeparateResponse) {
Service<CoapPacket, CoapPacket> observationHandler, Service<CoapPacket, CoapPacket> inboundService,
Function<CoapPacket, Boolean> handleResponse, Function<SeparateResponse, Boolean> handleSeparateResponse) {

this.sender = sender;
this.observationHandler = requireNonNull(observationHandler);
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public class CoapTcpDispatcher implements CoapTcpListener {
private final Function<SeparateResponse, Boolean> observationHandler;

public CoapTcpDispatcher(Service<CoapPacket, Boolean> sender, CapabilitiesStorage csmStorage, Capabilities ownCapability,
Service<CoapRequest, CoapResponse> inboundService, Function<SeparateResponse, Boolean> outboundHandler,
Function<SeparateResponse, Boolean> observationHandler) {
Service<CoapRequest, CoapResponse> inboundService, Function<SeparateResponse, Boolean> outboundHandler,
Function<SeparateResponse, Boolean> observationHandler) {
this.csmStorage = csmStorage;
this.ownCapability = ownCapability;
this.sender = sender;
Expand Down

0 comments on commit 7b725a7

Please sign in to comment.