Skip to content

Commit

Permalink
Addressing comments
Browse files Browse the repository at this point in the history
Signed-off-by: Bharathwaj G <[email protected]>
  • Loading branch information
bharath-techie committed Jul 20, 2022
1 parent 41d342d commit 25bb645
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public List<DeletePitInfo> getDeletePitResults() {
/**
* @return Whether the attempt to delete PIT was successful.
*/

@Override
public RestStatus status() {
if (deletePitResults.isEmpty()) return NOT_FOUND;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class TransportCreatePitAction extends HandledTransportAction<CreatePitRe
private final ClusterService clusterService;
private final TransportSearchAction transportSearchAction;
private final NamedWriteableRegistry namedWriteableRegistry;
private final PitService pitService;
private final CreatePitController createPitController;

@Inject
Expand All @@ -51,7 +50,6 @@ public TransportCreatePitAction(
ClusterService clusterService,
TransportSearchAction transportSearchAction,
NamedWriteableRegistry namedWriteableRegistry,
PitService pitService,
CreatePitController createPitController
) {
super(CreatePitAction.NAME, transportService, actionFilters, in -> new CreatePitRequest(in));
Expand All @@ -61,7 +59,6 @@ public TransportCreatePitAction(
this.transportSearchAction = transportSearchAction;
this.namedWriteableRegistry = namedWriteableRegistry;
this.createPitController = createPitController;
this.pitService = pitService;
}

@Override
Expand Down

0 comments on commit 25bb645

Please sign in to comment.