()
| 118 | } |
| 119 | |
| 120 | public static String tzOffset(){ |
| 121 | StringBuffer tz=new StringBuffer(); |
| 122 | int tzi=tzo; |
| 123 | char sign='+'; |
| 124 | if (tzo<0) { sign='-'; tzi=-tzo; } |
| 125 | tz.append(sign).append(lz2(tzi)).append(":00"); |
| 126 | return tz.toString(); |
| 127 | } |
| 128 | |
| 129 | public static String dispLocalTime(){ |
| 130 | long utcDate=utcTimeMillis(); |
no test coverage detected