Skip to content

Commit

Permalink
Fix improper param call
Browse files Browse the repository at this point in the history
  • Loading branch information
qqndrew committed Sep 4, 2024
1 parent f706165 commit cd848fb
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 @@ -6,7 +6,7 @@

<groupId>org.ohnlp.medtagger</groupId>
<artifactId>medtagger</artifactId>
<version>1.0.75</version>
<version>1.0.76</version>
<description>The MedTagger biomedical information extraction pipeline</description>


Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/ohnlp/medtagger/fit/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void main(String[] args) throws Exception {
Path ruleDirPath = Paths.get(args[2]);
Path sectionPath = null;
if (args.length > 3) {
sectionPath = Paths.get(args[4]);
sectionPath = Paths.get(args[3]);
}

CollectionReaderDescription reader =
Expand Down

0 comments on commit cd848fb

Please sign in to comment.