Selaa lähdekoodia

remvoe indentation

Eren Yilmaz 6 vuotta sitten
vanhempi
commit
a6fb3a144b
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  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 "";