Ejemplo n.º 1
0
 public static String format(String msg, Object... args) {
   // TODO: String.format is extremely slow on Android, replace it with a custom/simplified
   // implementation
   ReusableFormatter formatter = thread_local_formatter.get();
   return formatter.format(msg, args);
 }
Ejemplo n.º 2
0
 public static String format(String msg, Object... args) {
   ReusableFormatter formatter = thread_local_formatter.get();
   return formatter.format(msg, args);
 }