From 55a13f72323b473950c6f3d454f8b629faf523b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Fri, 15 Aug 2025 21:24:01 +0200 Subject: [PATCH] Use `Self` in `Default` implementation of `Task` --- runtime/src/task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/task.rs b/runtime/src/task.rs index c4b07994..34ee1df7 100644 --- a/runtime/src/task.rs +++ b/runtime/src/task.rs @@ -385,7 +385,7 @@ impl Task> { impl Default for Task { fn default() -> Self { - Task::none() + Self::none() } }