Explorar el Código

remvoe indentation

Eren Yilmaz hace 6 años
padre
commit
a6fb3a144b
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  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 "";