Skip to content

Commit 45f54ef

Browse files
committed
some questionable nullable annotations whatever
1 parent 333522e commit 45f54ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BizHawk.WinForms.Controls/FLPs/VirtualizedFlowLayoutPanel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ namespace BizHawk.Client.EmuHawk;
66

77
public class VirtualizedFlowLayoutPanel : FlowLayoutPanel
88
{
9-
private VScrollBar _boundScrollBar;
9+
private VScrollBar? _boundScrollBar;
1010
public VScrollBar BoundScrollBar
1111
{
12-
get => _boundScrollBar;
12+
get => _boundScrollBar!;
1313
set
1414
{
1515
_boundScrollBar = value;

0 commit comments

Comments
 (0)