diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-25 20:20:00 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-25 20:20:00 +0200 |
commit | dbe72fd9627f701210d69c9b01db762b2c950190 (patch) | |
tree | d2baf354b59d38f3ad486a73523fc43e8c3c6c3b /Userland/DevTools/HackStudio/HackStudioWidget.cpp | |
parent | 2d6be48c6f2353a5956341e9b947c715f29a6eaf (diff) | |
download | serenity-dbe72fd9627f701210d69c9b01db762b2c950190.zip |
Everywhere: Remove empty line after function body opening curly brace
Diffstat (limited to 'Userland/DevTools/HackStudio/HackStudioWidget.cpp')
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index 5726a07c3b..49a4651be0 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -376,7 +376,6 @@ NonnullRefPtr<GUI::Action> HackStudioWidget::create_new_directory_action() NonnullRefPtr<GUI::Action> HackStudioWidget::create_open_selected_action() { - auto open_selected_action = GUI::Action::create("Open", [this](const GUI::Action&) { auto files = selected_file_paths(); for (auto& file : files) @@ -678,7 +677,6 @@ String HackStudioWidget::get_full_path_of_serenity_source(const String& file) RefPtr<EditorWrapper> HackStudioWidget::get_editor_of_file(const String& file_name) { - String file_path = file_name; // TODO: We can probably do a more specific condition here, something like |