LibCore: Remove macro-generated EventReceiver::try_create(...) factories

We can just use the infallible factory everywhere instead.
This commit is contained in:
Andreas Kling 2025-08-11 12:29:33 +02:00 committed by Andreas Kling
commit bd7599ccfc
Notes: github-actions[bot] 2025-08-11 14:56:51 +00:00
9 changed files with 18 additions and 23 deletions

View file

@ -99,7 +99,7 @@ ErrorOr<NonnullRefPtr<FileWatcher>> FileWatcher::create(FileWatcherFlags flags)
if (watcher_fd < 0)
return Error::from_errno(errno);
auto notifier = TRY(Notifier::try_create(watcher_fd, Notifier::Type::Read));
auto notifier = Notifier::construct(watcher_fd, Notifier::Type::Read);
return adopt_nonnull_ref_or_enomem(new (nothrow) FileWatcher(watcher_fd, move(notifier)));
}