Adin Horovitz

Results 2 issues of Adin Horovitz

I found the issue in `DayView.java::setEventRects()`: ``` int filteredStartMinute = Math.max(startMinute, timeRange.startMinute); int duration = Math.min(endMinute, timeRange.endMinute) - filteredStartMinute; if (duration < MIN_DURATION_MINUTES) { duration = MIN_DURATION_MINUTES; filteredStartMinute = endMinute...

I reported this bug here: https://github.com/linkedin/Tachyon/issues/12 It seemed like a simple enough fix, so I took a stab at it. With this change, I am seeing the problem event drawn...