mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
19 lines
387 B
C#
19 lines
387 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|