Skip to content

Commit

Permalink
storage: Do not add new abstract methods to VariantStorageEngine. #TA…
Browse files Browse the repository at this point in the history
…SK-6722
  • Loading branch information
j-coll committed Dec 19, 2024
1 parent 852ffca commit 005855f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,11 @@ public List<URI> walkData(URI outputFile, VariantWriterFactory.VariantOutputForm
}


public abstract List<URI> walkData(URI outputFile, VariantOutputFormat format, Query query, QueryOptions queryOptions,
public List<URI> walkData(URI outputFile, VariantOutputFormat format, Query query, QueryOptions queryOptions,
String commandLine)
throws StorageEngineException;
throws StorageEngineException {
throw new UnsupportedOperationException();
}

/**
* Creates a new {@link VariantExporter} for the current backend.
Expand Down

0 comments on commit 005855f

Please sign in to comment.