(Formatter formatter, String format, Object... args)
| 512 | } |
| 513 | |
| 514 | static void printf(Formatter formatter, String format, Object... args) throws IOException { |
| 515 | formatter.format(format, args); |
| 516 | IOException ioException = formatter.ioException(); |
| 517 | if (ioException != null) |
| 518 | throw ioException; |
| 519 | } |
| 520 | |
| 521 | /** |
| 522 | * Writes the model to the modelOutput. |
no outgoing calls
no test coverage detected