()
| 1967 | |
| 1968 | // Uhrzeit in der UTC-Zeitzone (ohne Schaltsekunde) |
| 1969 | private PlainTime getTimeUTC() { |
| 1970 | |
| 1971 | int timeOfDay = getTimeOfDay(this); |
| 1972 | int minutes = timeOfDay / 60; |
| 1973 | int hour = minutes / 60; |
| 1974 | int minute = minutes % 60; |
| 1975 | int second = timeOfDay % 60; |
| 1976 | int nano = this.getNanosecond(); |
| 1977 | |
| 1978 | return PlainTime.of(hour, minute, second, nano); |
| 1979 | |
| 1980 | } |
| 1981 | |
| 1982 | private double getModernUT() { |
| 1983 |
no test coverage detected