From 4e6c12e7c990528a11352be54c09bfc26a2bdf55 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 15 Apr 2021 16:27:40 +0200 Subject: [PATCH] Fix api docs --- src/main/java/app/controllers/EditorController.java | 2 -- 1 file changed, 2 deletions(-) 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))) {