Java8 Adding Hours To LocalDateTime Not Working
The documentation of LocalDateTime specifies the instance of LocalDateTime is immutable, for example plusHours public LocalDateTime plusHours(long hours) Returns a copy of this LocalDateTime with the specified number of hours added. This instance is immutable and unaffected by this method call. Parameters: hours – the hours to add, may be negative Returns: a LocalDateTime based … Read more