LibWeb/DOM: Remove uneccessary ExceptionOr for NodeIterator::create

This commit is contained in:
Shannon Booth 2025-01-10 16:12:34 +13:00 committed by Sam Atkins
commit 1f4c7ac62b
Notes: github-actions[bot] 2025-01-10 08:09:47 +00:00
3 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ void NodeIterator::visit_edges(Cell::Visitor& visitor)
}
// https://dom.spec.whatwg.org/#dom-document-createnodeiterator
WebIDL::ExceptionOr<GC::Ref<NodeIterator>> NodeIterator::create(JS::Realm& realm, Node& root, unsigned what_to_show, GC::Ptr<NodeFilter> filter)
GC::Ref<NodeIterator> NodeIterator::create(JS::Realm& realm, Node& root, unsigned what_to_show, GC::Ptr<NodeFilter> filter)
{
// 1. Let iterator be a new NodeIterator object.
// 2. Set iterators root and iterators reference to root.