How do I find the difference in Days between two Joda-Time DateTime instances? With ‘difference in days’ I mean if start is on Monday and end is on Tuesday I expect a return
you can use LocalDate:
Days.daysBetween(new LocalDate(start), new LocalDate(end)).getDays()