Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy committed May 17, 2023
1 parent 147b828 commit f93bd56
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import java.util.Collection;
import org.projectnessie.api.v1.params.EntriesParams;
import org.projectnessie.client.api.GetEntriesBuilder;
import org.projectnessie.client.builder.BaseGetEntriesBuilder;
import org.projectnessie.client.http.NessieApiClient;
import org.projectnessie.error.NessieNotFoundException;
Expand Down Expand Up @@ -64,6 +65,11 @@ public HttpGetEntries maxKey(ContentKey maxKey) {
throw new UnsupportedOperationException("Requesting key ranges is not supported in API v1.");
}

@Override
public GetEntriesBuilder prefixKey(ContentKey prefixKey) {
throw new UnsupportedOperationException("Requesting key ranges is not supported in API v1.");
}

@Override
protected EntriesResponse get(EntriesParams p) throws NessieNotFoundException {
if (withContent) {
Expand Down

0 comments on commit f93bd56

Please sign in to comment.