(int hours)
| 50 | } |
| 51 | |
| 52 | public static ZoneOffset ofHours(int hours) { |
| 53 | return ofTotalSeconds(hours * 3600); |
| 54 | } |
| 55 | |
| 56 | public static ZoneOffset ofHoursMinutes(int hours, int minutes) { |
| 57 | int sign = hours < 0 || minutes < 0 ? -1 : 1; |
nothing calls this directly
no test coverage detected