From c984617b1c6b68ab10a98face736ae5dbadb46d5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 22 Feb 2017 22:54:18 -0500 Subject: [PATCH] null out testNodesData --- src/Android/AutofillService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index 6977349b5..f5c9e9a29 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -65,6 +65,7 @@ namespace Bit.Android var testNodesData = testNodes.Select(n => new { id = n.ViewIdResourceName, text = n.Text }); testNodes.Dispose(); testNodes = null; + testNodesData = null; */ var notificationManager = (NotificationManager)GetSystemService(NotificationService);