()
| 1946 | } |
| 1947 | |
| 1948 | private long getElapsedTimeUTC() { |
| 1949 | |
| 1950 | if (LeapSeconds.getInstance().isEnabled()) { |
| 1951 | long time = LeapSeconds.getInstance().enhance(this.posixTime); |
| 1952 | return (this.isPositiveLS() ? time + 1 : time); |
| 1953 | } else { |
| 1954 | return this.posixTime - POSIX_UTC_DELTA; |
| 1955 | } |
| 1956 | |
| 1957 | } |
| 1958 | |
| 1959 | // Datum in der UTC-Zeitzone |
| 1960 | private PlainDate getDateUTC() { |
no test coverage detected