()
| 773 | } |
| 774 | |
| 775 | private void newline() throws IOException { |
| 776 | if (usesEmptyNewlineAndIndent) { |
| 777 | return; |
| 778 | } |
| 779 | |
| 780 | out.write(formattingStyle.getNewline()); |
| 781 | for (int i = 1, size = stackSize; i < size; i++) { |
| 782 | out.write(formattingStyle.getIndent()); |
| 783 | } |
| 784 | } |
| 785 | |
| 786 | /** |
| 787 | * Inserts any necessary separators and whitespace before a name. Also adjusts the stack to expect |
no test coverage detected