mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
17 lines
353 B
C#
17 lines
353 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.Dispose();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|