Skip to content

Commit

Permalink
Small fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 15, 2014
1 parent a4abfd1 commit d53f534
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -133,7 +133,8 @@ public String debugDump(int indent) {
DebugUtil.indentDebugDump(sb, indent);
sb.append("ORG: \n");
if (isRoot()) {
sb.append(getOrgRef().debugDump(indent + 1)).append("ROOT\n");
DebugUtil.indentDebugDump(sb, indent + 1);
sb.append("ROOT\n");
}
if (getOrgRef() != null) {
sb.append(getOrgRef().debugDump(indent + 1));
Expand All @@ -142,7 +143,6 @@ public String debugDump(int indent) {
DebugUtil.indentDebugDump(sb, indent + 1);
sb.append("null\n");
}

if (getScope() != null) {
DebugUtil.indentDebugDump(sb, indent + 1);
sb.append(getScope());
Expand Down

0 comments on commit d53f534

Please sign in to comment.