The plusDays method is not a mutator. It returns a copy of the given DateTime object with the change made rather than changing the given object.
If you want to actually change the variable dateTime value, you’ll need:
DateTime dateTime = new DateTime(date);
dateTime = dateTime.plusDays(1);