mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
LibWeb/DOM: Remove uneccessary ExceptionOr for NodeIterator::create
This commit is contained in:
parent
17c92d7c2b
commit
1f4c7ac62b
Notes:
github-actions[bot]
2025-01-10 08:09:47 +00:00
Author: https://github.com/shannonbooth
Commit: 1f4c7ac62b
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3208
Reviewed-by: https://github.com/AtkinsSJ ✅
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ class NodeIterator final : public Bindings::PlatformObject {
|
|||
GC_DECLARE_ALLOCATOR(NodeIterator);
|
||||
|
||||
public:
|
||||
static WebIDL::ExceptionOr<GC::Ref<NodeIterator>> create(JS::Realm& realm, Node& root, unsigned what_to_show, GC::Ptr<NodeFilter>);
|
||||
static GC::Ref<NodeIterator> create(JS::Realm& realm, Node& root, unsigned what_to_show, GC::Ptr<NodeFilter>);
|
||||
|
||||
virtual ~NodeIterator() override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue