(
@Nullable String template, @Nullable Object @Nullable ... args)
| 80 | } |
| 81 | |
| 82 | static String lenientFormat( |
| 83 | @Nullable String template, @Nullable Object @Nullable ... args) { |
| 84 | return Strings.lenientFormat(template, args); |
| 85 | } |
| 86 | |
| 87 | static String stringValueOf(@Nullable Object o) { |
| 88 | return String.valueOf(o); |
no test coverage detected