mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 12:43:39 +00: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();
|
|
}
|
|
}
|
|
}
|
|
} |