소스 검색

Don't load the example file by default.

Sam Jaffe 5 년 전
부모
커밋
b31de239be
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      src/main/lombok/org/leumasjaffe/recipe/view/RecipeManagerFrame.java

+ 1 - 5
src/main/lombok/org/leumasjaffe/recipe/view/RecipeManagerFrame.java

@@ -16,7 +16,6 @@ import javax.swing.JMenu;
 public class RecipeManagerFrame extends JFrame implements FileController.ViewModel {
 	
 	public RecipeManagerFrame() {
-//		RecipeCardPanel panel = new RecipeCardPanel();
 		FileController fileController = new FileController(this);
 
 		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
@@ -27,10 +26,7 @@ public class RecipeManagerFrame extends JFrame implements FileController.ViewMod
 		JMenu mnFile = new FileMenu(this, fileController);
 		menuBar.add(mnFile);
 		
-//		setContentPane(panel);
-
-//		fileController.create();
-		fileController.open("src/test/resources/example.json");
+		fileController.create();
 
 		pack();
 		repaint();