diff --git a/src/Utils.cs b/src/Utils.cs
index f323b64..c2bcc6f 100644
--- a/src/Utils.cs
+++ b/src/Utils.cs
@@ -19,10 +19,4 @@ public static class Utils
/// The name of the person to include in the greeting. Cannot be null.
/// A string containing a greeting addressed to the specified name.
public static string Greeting(string name) => $"Hello, {name}!";
-
- ///
- /// Returns a standard greeting message.
- ///
- /// A string containing the greeting message "Hello, World!".
- public static string Greeting() => $"Hello, World!";
}