Skip to content

Commit

Permalink
Update for grobid-core version 0.4.3-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
kermitt2 committed Aug 29, 2017
1 parent dbfa716 commit a87e70e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ else if (featureFactory.test_digit(word))
if (featuresVector.punctType == null)
featuresVector.punctType = "NOPUNCT";

Matcher m2 = featureFactory.YEAR.matcher(word);
Matcher m2 = featureFactory.year.matcher(word);
if (m2.find()) {
featuresVector.year = true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ else if (featureFactory.test_digit(word))
if (featuresVector.punctType == null)
featuresVector.punctType = "NOPUNCT";

Matcher m2 = featureFactory.YEAR.matcher(word);
Matcher m2 = featureFactory.year.matcher(word);
if (m2.find()) {
featuresVector.year = true;
}
Expand Down

0 comments on commit a87e70e

Please sign in to comment.