We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab9f91 commit 5fe194fCopy full SHA for 5fe194f
src/de/unihd/dbs/heideltime/standalone/components/impl/TimeMLResultFormatter.java
@@ -46,7 +46,7 @@ public String format(JCas jcas) throws Exception {
46
Timex3Interval t = (Timex3Interval) iterIntervals.next();
47
48
// disregard intervals that likely aren't a real interval, but just a timex-translation
49
- if(t.getTimexValueEB().equals(t.getTimexValueLB()) && t.getTimexValueEE().equals(t.getTimexValueLE()))
+ if(t.getTimexValueLE().equals(t.getTimexValueLB()) && t.getTimexValueEE().equals(t.getTimexValueEB()))
50
continue;
51
52
if(intervals.containsKey(t.getBegin())) {
0 commit comments