LibCore+LibIPC: Remove badge on File::leak_fd

This removes a dependency on LibIPC from LibCore.
This commit is contained in:
rmg-x 2025-06-13 18:19:04 -05:00 committed by Tim Flynn
commit 18f28f398b
Notes: github-actions[bot] 2025-06-14 20:04:46 +00:00
3 changed files with 3 additions and 6 deletions

View file

@ -22,7 +22,7 @@ public:
static File adopt_file(NonnullOwnPtr<Core::File> file)
{
return File(file->leak_fd(Badge<File> {}));
return File(file->leak_fd());
}
static File adopt_fd(int fd)