diff --git a/src/main/java/app/controllers/EditorController.java b/src/main/java/app/controllers/EditorController.java index 28e1b4c..909934f 100644 --- a/src/main/java/app/controllers/EditorController.java +++ b/src/main/java/app/controllers/EditorController.java @@ -148,7 +148,6 @@ public class EditorController implements Initializable, Controller, FileManageme * open an error dialog to give the user feedback about what has happened. * * @param filePath The path of the file - * @throws FileNotFoundException */ public void setEditorContent(String filePath) { // if (filePath == null) { @@ -180,7 +179,6 @@ public class EditorController implements Initializable, Controller, FileManageme * open an error dialog to give the user feedback about what has happened. * * @param filePath The path of the file - * @throws FileNotFoundException */ public void saveCodeArea(String filePath) { try (PrintWriter writer = new PrintWriter(new File(filePath))) {