(String fmt, Vargs vargs)
| 325 | } |
| 326 | |
| 327 | @Deprecated |
| 328 | public static String sprintf(String fmt, Vargs vargs) { |
| 329 | if (vargs == null || vargs.size() == 0) { |
| 330 | return fmt; |
| 331 | } else { |
| 332 | return new PrintfFormat(fmt).sprintf(vargs.toArray()); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | public static String StripExtension(String string) { |
| 337 | int i = string.lastIndexOf('.'); |
no test coverage detected