Skip to content

Commit

Permalink
DT-619 removed unused method and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
preetamnpr committed Nov 24, 2023
1 parent c99d050 commit fa11276
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ public String getHumanReadablePrompt() {
return ("UC1: Submit a booking request using the following parameters:");
}

@Override
public JsonNode getJsonForHumanReadablePrompt() {
return getCspSupplier().get().toJson();
}

@Override
public ObjectNode asJsonNode() {
ObjectNode jsonNode = super.asJsonNode();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
package org.dcsa.conformance.standards.booking.action;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
import org.dcsa.conformance.core.check.*;
import org.dcsa.conformance.core.traffic.ConformanceExchange;
import org.dcsa.conformance.core.traffic.HttpMessageType;
import org.dcsa.conformance.standards.booking.party.BookingRole;
import org.dcsa.conformance.standards.booking.party.DynamicScenarioParameters;

import java.util.stream.Stream;

Expand All @@ -34,11 +31,6 @@ public String getHumanReadablePrompt() {
return ("UC3: Submit an updated booking request");
}

@Override
public JsonNode getJsonForHumanReadablePrompt() {
return getCspSupplier().get().toJson();
}

@Override
public ObjectNode asJsonNode() {
ObjectNode jsonNode = super.asJsonNode();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.dcsa.conformance.standards.booking.action;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
Expand Down Expand Up @@ -32,11 +31,6 @@ public String getHumanReadablePrompt() {
return ("UC7: Submit Amendment to confirmed booking");
}

@Override
public JsonNode getJsonForHumanReadablePrompt() {
return getCspSupplier().get().toJson();
}

@Override
public ObjectNode asJsonNode() {
ObjectNode jsonNode = super.asJsonNode();
Expand Down

0 comments on commit fa11276

Please sign in to comment.