summaryrefslogtreecommitdiff
path: root/Userland/DevTools
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools')
-rw-r--r--Userland/DevTools/HackStudio/HackStudioWidget.cpp2
-rw-r--r--Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp1
2 files changed, 0 insertions, 3 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
diff --git a/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp
index 66a447679e..29018894ad 100644
--- a/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp
+++ b/Userland/DevTools/HackStudio/LanguageServers/Cpp/ParserAutoComplete.cpp
@@ -300,7 +300,6 @@ NonnullRefPtrVector<Declaration> ParserAutoComplete::get_global_declarations(con
String ParserAutoComplete::document_path_from_include_path(const StringView& include_path) const
{
-
static Regex<PosixExtended> library_include("<(.+)>");
static Regex<PosixExtended> user_defined_include("\"(.+)\"");