(DataOutputStream outputStream, String value)
| 699 | } |
| 700 | |
| 701 | private void writeUTF(DataOutputStream outputStream, String value) |
| 702 | throws IOException { |
| 703 | if (value != null) { |
| 704 | outputStream.writeUTF(value); |
| 705 | } else { |
| 706 | outputStream.writeUTF(""); |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | public void updateTime() { |
| 711 | Time.setOffset(gmtOffset); |
no outgoing calls
no test coverage detected