I have the following object of type java.util.Date (Java 8):
So basically 1 January 1235 in CET format. But the moment I cast this with Instant:
IntelliJ show me that a whole week has been added! Instant uses UTC format, which explains why one hour is subtracted (one hour difference between CET and UTC). But where does the week come from?

