diff --git a/Unit/Nothing.cs b/Unit/Nothing.cs index 37f1930..8b13789 100644 --- a/Unit/Nothing.cs +++ b/Unit/Nothing.cs @@ -1,17 +1 @@ -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() - { - return "Nothing"; - } - } -}