Skip to content

Commit

Permalink
re-enable the use of document creation time
Browse files Browse the repository at this point in the history
  • Loading branch information
kno10 committed Apr 23, 2018
1 parent 650651d commit 27ab9c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public String specifyAmbiguousValuesString(String ambigString, Timex3 t_i, int i
if (!ambigString.startsWith("UNDEF"))
return ambigString;
// If available, parse document creation time:
ParsedDct dct = null; // (documentType != DocumentType.NARRATIVE) ? ParsedDct.read(jcas) : null;
ParsedDct dct = ParsedDct.read(jcas); // was: (documentType != DocumentType.NARRATIVE) ? ParsedDct.read(jcas) : null;

// get the last tense (depending on the part of speech tags used in front or behind the expression)
Tense last_used_tense = getLastTense(t_i, jcas, language);
Expand Down

0 comments on commit 27ab9c5

Please sign in to comment.