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/Applications/SoundPlayer | |
parent | 2d6be48c6f2353a5956341e9b947c715f29a6eaf (diff) | |
download | serenity-dbe72fd9627f701210d69c9b01db762b2c950190.zip |
Everywhere: Remove empty line after function body opening curly brace
Diffstat (limited to 'Userland/Applications/SoundPlayer')
-rw-r--r-- | Userland/Applications/SoundPlayer/M3UParser.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/SoundPlayer/M3UParser.cpp b/Userland/Applications/SoundPlayer/M3UParser.cpp index 5b45763e63..e7c3e2ffda 100644 --- a/Userland/Applications/SoundPlayer/M3UParser.cpp +++ b/Userland/Applications/SoundPlayer/M3UParser.cpp @@ -18,7 +18,6 @@ M3UParser::M3UParser() NonnullOwnPtr<M3UParser> M3UParser::from_file(const String path) { - auto parser = make<M3UParser>(); VERIFY(!path.is_null() && !path.is_empty() && !path.is_whitespace()); parser->m_use_utf8 = path.ends_with(".m3u8", AK::CaseSensitivity::CaseInsensitive); |