Skip to content

Commit

Permalink
Removed unused exceptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jorizci committed Mar 1, 2017
1 parent 708dda4 commit 9ec9b33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class VcfReaderConfiguration {

@Bean(VARIANT_READER)
@StepScope
public ItemStreamReader<Variant> unwindingReader(VcfReader vcfReader) throws Exception {
public ItemStreamReader<Variant> unwindingReader(VcfReader vcfReader) {
return new UnwindingItemStreamReader<>(vcfReader);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class JobOptions {
@Value("${" + JobParametersNames.CONFIG_RESTARTABILITY_ALLOW + ":false}") private boolean allowStartIfComplete;

@PostConstruct
public void loadArgs() throws IOException {
public void loadArgs() {
logger.info("Loading job arguments");

if (opencgaAppHome == null || opencgaAppHome.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static File getSourceStatsFile(String outputDirStats) throws URISyntaxExc
return new File(URLHelper.getSourceStatsUri(outputDirStats, INPUT_STUDY_ID, INPUT_VCF_ID));
}

public static File getVepInputFile(String outputDirAnnotation) throws URISyntaxException {
public static File getVepInputFile(String outputDirAnnotation) {
return new File(URLHelper.resolveVepInput(outputDirAnnotation, INPUT_STUDY_ID, INPUT_VCF_ID));
}

Expand Down

0 comments on commit 9ec9b33

Please sign in to comment.