removeIndent method

void removeIndent()

Implementation

void removeIndent() {
  indent -= 2;
  indent = indent < 0 ? 0 : indent;
}