Skip to content

Commit ecd86b1

Browse files
committed
Remove redundant nullable markers
1 parent 2a72d1d commit ecd86b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Extensions/dnSpy.StringSearcher/StringReference.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ public abstract class StringReference(StringReferenceContext context, string lit
5252

5353
public string FormattedLiteral => formatted ??= StringFormatter.ToFormattedString(Literal, out isVerbatim);
5454

55-
public FrameworkElement? LiteralUI => literalUI ??= CreateLiteralUI();
55+
public FrameworkElement LiteralUI => literalUI ??= CreateLiteralUI();
5656

57-
public FrameworkElement? ModuleUI => moduleUI ??= CreateModuleUI();
57+
public FrameworkElement ModuleUI => moduleUI ??= CreateModuleUI();
5858

59-
public FrameworkElement? ReferrerUI => referrerUI ??= CreateReferrerUI();
59+
public FrameworkElement ReferrerUI => referrerUI ??= CreateReferrerUI();
6060

6161
public ImageReference ReferrerImage => Member switch {
6262
MethodDef method => Context.DotNetImageService.GetImageReference(method),

0 commit comments

Comments
 (0)