From 95834d0c750722e4a708b2d374d553d84ecb3fa6 Mon Sep 17 00:00:00 2001 From: "Egor.Ushakov" Date: Wed, 21 Jan 2015 16:59:31 +0300 Subject: [PATCH] decompiler: use buffer method --- .../java/decompiler/modules/decompiler/stats/IfStatement.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/jetbrains/java/decompiler/modules/decompiler/stats/IfStatement.java b/src/org/jetbrains/java/decompiler/modules/decompiler/stats/IfStatement.java index 4a5eb13..a03e70a 100644 --- a/src/org/jetbrains/java/decompiler/modules/decompiler/stats/IfStatement.java +++ b/src/org/jetbrains/java/decompiler/modules/decompiler/stats/IfStatement.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2014 JetBrains s.r.o. + * Copyright 2000-2015 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -216,7 +216,7 @@ public class IfStatement extends Statement { tracer.incrementCurrentSourceLine(); if (ifstat == null) { - buf.append(InterpreterUtil.getIndentString(indent + 1)); + buf.appendIndent(indent + 1); if (ifedge.explicit) { if (ifedge.getType() == StatEdge.TYPE_BREAK) {