(String src)
| 167 | } |
| 168 | |
| 169 | public static String toExtendedString(String src){ |
| 170 | src=stringReplace(src,"%dt",Time.dispLocalTime()); |
| 171 | src=stringReplace(src,"%t",Time.localTime()); |
| 172 | return src; |
| 173 | } |
| 174 | |
| 175 | public static String hexByteToString(byte b){ |
| 176 | StringBuffer out=new StringBuffer(); |
no test coverage detected