LibWeb: Make is_identifier always return false the simple way

This commit is contained in:
Pavel Shliak
2024-12-20 03:22:48 +04:00
committed by Andreas Kling
parent d6466da4db
commit b6561f5e2b

View File

@@ -14,10 +14,8 @@
namespace Web::HTML { namespace Web::HTML {
bool SyntaxHighlighter::is_identifier(u64 token) const bool SyntaxHighlighter::is_identifier(u64) const
{ {
if (!token)
return false;
return false; return false;
} }