Return the XML document formatted with two spaces for indents. Chosen to do this since it's the most common case (e.g. with println()). Same as format(2). Use the format() function for more options. @webref xml:method @brief Gets XML data as a String using default formatting @return the content @se
()
| 1150 | * @see XML#format(int) |
| 1151 | */ |
| 1152 | @Override |
| 1153 | public String toString() { |
| 1154 | //return format(2); |
| 1155 | return format(-1); |
| 1156 | } |
| 1157 | } |
no test coverage detected