Skip to content

Commit

Permalink
revert collection literals, still in preview and was failing CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
IeuanWalker committed Nov 13, 2023
1 parent 7186c6c commit b884f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mopups/Mopups.Maui/Platforms/Android/Impl/AndroidMopups.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public Task RemoveAsync(PopupPage page)
}

//! important keeps reference to pages that accessibility has applied to. This is so accessibility can be removed properly when popup is removed. #https://github.com/LuckyDucko/Mopups/issues/93
readonly List<Android.Views.View?> views = [];
readonly List<Android.Views.View?> views = new();
void HandleAccessibility(bool showPopup, bool disableAccessibilityHandling)
{
if (disableAccessibilityHandling)
Expand Down

0 comments on commit b884f13

Please sign in to comment.