From f0f39f28ed4f90ead018171d15a5da9504899a86 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Sun, 18 Aug 2019 21:40:31 +0700 Subject: [PATCH] Delete an unused property (#100) --- src/WpfMath/Atoms/NullAtom.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/WpfMath/Atoms/NullAtom.cs b/src/WpfMath/Atoms/NullAtom.cs index f72698ec..f421caaa 100644 --- a/src/WpfMath/Atoms/NullAtom.cs +++ b/src/WpfMath/Atoms/NullAtom.cs @@ -8,9 +8,6 @@ public NullAtom(SourceSpan source = null, TexAtomType type = TexAtomType.Ordinar { } - public static Box NullBox =>new StrutBox(0, 0, 0, 0); - - protected override Box CreateBoxCore(TexEnvironment environment)=> new StrutBox(0, 0, 0, 0); - + protected override Box CreateBoxCore(TexEnvironment environment) => new StrutBox(0, 0, 0, 0); } }