(@NotNull String f, @Nullable Object... params)
| 43 | } |
| 44 | |
| 45 | public static @NotNull String format(@NotNull String f, @Nullable Object... params) { |
| 46 | return Formatter.newMessage(f, params).getFormattedMessage(); |
| 47 | } |
| 48 | |
| 49 | public static @NotNull String indent(int n) { |
| 50 | if (n <= 0) |