static String getIndent(int indent) { String space = ""; for (int i = 0; i < indent; i++) { space += indentStr; } return space; }