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
commit b6561f5e2b
Notes: github-actions[bot] 2024-12-22 11:34:37 +00:00

View file

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