Skip to content

Commit

Permalink
fix issues introduced by git cherry pick
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-such-code committed Jul 15, 2024
1 parent 4c731eb commit a9f9e53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

// main command with format specifiers for the usage help message
@Command(name = "openbis-scripts",
subcommands = { SampleHierarchyCommand.class, FindDatasetsCommand.class, DownloadPetabCommand.class,
UploadPetabResultCommand.class, UploadDatasetCommand.class, SpaceStatisticsCommand.class },
subcommands = { SampleHierarchyCommand.class, FindDatasetsCommand.class,
UploadDatasetCommand.class, SpaceStatisticsCommand.class },
description = "A client software for querying openBIS.",
mixinStandardHelpOptions = true, versionProvider = ManifestVersionProvider.class)
public class CommandLineOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @author: Sven Fillinger, Andreas Friedrich
*/
public class FileSystemWriter implements ModelReporter {
public class FileSystemWriter implements SummaryWriter {

/**
* File that stores the summary report content for valid checksums.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package life.qbic.model.download;

import java.io.IOException;
import java.net.URL;
import java.nio.file.Path;
import java.util.List;

public interface ModelReporter {
public interface SummaryWriter {

void reportSummary(List<String> summary) throws IOException;
}

0 comments on commit a9f9e53

Please sign in to comment.