Skip to content

Commit

Permalink
CIRC-1933 Fix code smells
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksandrVidinieiev committed Dec 26, 2023
1 parent 1b03184 commit 42d299c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ public abstract class SlipsResource extends Resource {
private final RequestType requestType;
private final Collection<ItemStatus> itemStatuses;

public SlipsResource(String rootPath, HttpClient client, String collectionName,
protected SlipsResource(String rootPath, HttpClient client, String collectionName,
RequestType requestType, ItemStatus itemStatus) {

this(rootPath, client, collectionName, requestType, List.of(itemStatus));
}

public SlipsResource(String rootPath, HttpClient client, String collectionName,
protected SlipsResource(String rootPath, HttpClient client, String collectionName,
RequestType requestType, Collection<ItemStatus> itemStatuses) {

super(client);
Expand Down

0 comments on commit 42d299c

Please sign in to comment.