(int totalSeconds)
| 59 | } |
| 60 | |
| 61 | public static ZoneOffset ofTotalSeconds(int totalSeconds) { |
| 62 | if (totalSeconds == 0) { |
| 63 | return UTC; |
| 64 | } |
| 65 | return new ZoneOffset(totalSeconds); |
| 66 | } |
| 67 | |
| 68 | public int getTotalSeconds() { |
| 69 | return totalSeconds; |
no outgoing calls
no test coverage detected