Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
# Conflicts:
#	pom.xml
  • Loading branch information
kvb2univpitt committed Nov 1, 2019
2 parents 23c030a + 979f9d9 commit b36a0b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>edu.pitt.dbmi</groupId>
<artifactId>causal-cmd</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
<packaging>jar</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/edu/pitt/dbmi/causal/cmd/CmdParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ private static Map<String, String> getValidParameters(CommandLine cmd, CmdArgs c

List<String> params = new LinkedList<>();
try {
params.addAll(AlgorithmFactory.create(cmdArgs.getAlgorithmClass(), cmdArgs.getTestClass(), cmdArgs.getScoreClass()).getParameters());
params.addAll(getAllParameters(AlgorithmFactory.create(cmdArgs.getAlgorithmClass(), cmdArgs.getTestClass(), cmdArgs.getScoreClass())));
} catch (IllegalAccessException | InstantiationException exception) {
throw new CmdParserException(parseOptions, exception);
}
Expand Down

0 comments on commit b36a0b8

Please sign in to comment.