mirror of
https://github.com/bitwarden/android.git
synced 2024-12-30 21:08:33 +03:00
18 lines
387 B
C#
18 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();
|
|
}
|
|
}
|
|
}
|
|
}
|