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