浏览代码

remvoe indentation

Eren Yilmaz 6 年之前
父节点
当前提交
a6fb3a144b
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/bk/BlockCalc.java

+ 1 - 2
src/bk/BlockCalc.java

@@ -426,8 +426,7 @@ public class BlockCalc implements AlgorithmStage {
         {
             String info = "Subgraph of " + graph.getContainedLayers().get( calcLayerIndex() ).get( calcNodeIndex( nodeIndex ) ).getName() + ":\n";
             String tmp = subgraphAlgs.get( calcLayerIndex() ).get( calcNodeIndex( nodeIndex ) ).getDebugString();
-            tmp = tmp.replaceAll( "\n", "\n " );
-            info += " " + tmp;
+            info += tmp;
             return info;
         }
         return "";