mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 16:23:29 +00:00
PM-3349 PM-3350 MAUI Migration Initial
This commit is contained in:
18
src/App/Platforms/Android/Accessibility/NodeList.cs
Normal file
18
src/App/Platforms/Android/Accessibility/NodeList.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Android.Views.Accessibility;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Droid.Accessibility
|
||||
{
|
||||
public class NodeList : List<AccessibilityNodeInfo>, IDisposable
|
||||
{
|
||||
public void Dispose()
|
||||
{
|
||||
foreach (var item in this)
|
||||
{
|
||||
item.Recycle();
|
||||
item.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user