(long date)
| 88 | } |
| 89 | |
| 90 | public static String dayLocalString(long date){ |
| 91 | c = calDate(date); |
| 92 | return lz2(c.get(Calendar.DAY_OF_MONTH))+'.'+ |
| 93 | lz2(c.get(Calendar.MONTH)+1)+'.'+ |
| 94 | lz2(c.get(Calendar.YEAR) % 100)+" "; |
| 95 | } |
| 96 | |
| 97 | public static long utcTimeMillis(){ |
| 98 | return System.currentTimeMillis()+fixupLocalOffsetMills; |
no test coverage detected