Searched defs:otherDate (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
H A DLocalDate.java1866 int compareTo0(LocalDate otherDate) { argument
1867 int cmp = (year - otherDate.year);
1869 cmp = (month - otherDate.month);
1871 cmp = (day - otherDate.day);

Completed in 55 milliseconds