1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibJS: Remove GeneratorObject::initialize() override

This was missing its Base invocation. But since this override is not
doing anything anyways, just remove it.
This commit is contained in:
Timothy Flynn 2023-07-16 14:29:41 -04:00 committed by Linus Groh
parent f7d8fb6366
commit f8cb4f9686
2 changed files with 0 additions and 6 deletions

View file

@ -41,11 +41,6 @@ GeneratorObject::GeneratorObject(Realm&, Object& prototype, ExecutionContext con
{
}
ThrowCompletionOr<void> GeneratorObject::initialize(Realm&)
{
return {};
}
void GeneratorObject::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);