Skip to content

Commit

Permalink
Fix errors in test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-ry4n committed Oct 7, 2024
1 parent 88b3a8f commit d99c445
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@

public class NoopDataArchive implements DataArchive {

private final DataArchiveWriter<List<BlobSidecar>> BLOB_SIDECAR_WRITER = new DataArchiveNoopWriter<>();

@Override
public DataArchiveWriter<List<BlobSidecar>> getBlobSidecarWriter() throws IOException {
return new DataArchiveNoopWriter<>();
return BLOB_SIDECAR_WRITER;
}
}

0 comments on commit d99c445

Please sign in to comment.