Kolja Strohm пре 6 година
родитељ
комит
549d3f7226
2 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 1
      src/main/Main.java
  2. 0 1
      src/view/MainView.java

+ 1 - 1
src/main/Main.java

@@ -17,7 +17,7 @@ public class Main {
      * @param args the command line arguments, currently not in use
      */
     public static void main(String[] args) {
-        Reader r = new Reader( "small.json" );
+        Reader r = new Reader( "logo.json" );
         LayeredGraphNode graph = r.readInputGraph();
         SimpleNodePlacement.placeNodes( graph );
         new MainView( graph );

+ 0 - 1
src/view/MainView.java

@@ -50,7 +50,6 @@ import processor.Action;
 import processor.ProcessController;
 import processor.PseudoCodeNode;
 import processor.PseudoCodeProcessor;
-import test.StepInProcessor;
 
 /**
  * The main window of the application.