diff --git a/Unit/Nothing.cs b/Unit/Nothing.cs index a85bd36..e69de29 100644 --- a/Unit/Nothing.cs +++ b/Unit/Nothing.cs @@ -1,14 +0,0 @@ -namespace Unit -{ - /// - /// This class should be used instead of void for return types. - /// - public class Nothing - { - public static readonly Nothing Instance = new Nothing(); - - private Nothing() { } - - public override string ToString() => "Nothing"; - } -}