From 14a21f1156ac4df4fa5521d248ddef0d7c3545e6 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Wed, 20 Jul 2022 21:17:50 +0200 Subject: [PATCH] Remove unused method. --- src/Avalonia.Base/PropertyStore/ValueFrame.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Avalonia.Base/PropertyStore/ValueFrame.cs b/src/Avalonia.Base/PropertyStore/ValueFrame.cs index d35fd28f10..ab62d917bb 100644 --- a/src/Avalonia.Base/PropertyStore/ValueFrame.cs +++ b/src/Avalonia.Base/PropertyStore/ValueFrame.cs @@ -20,11 +20,6 @@ namespace Avalonia.PropertyStore public void SetOwner(ValueStore? owner) => Owner = owner; - public bool TryGet(AvaloniaProperty property, [NotNullWhen(true)] out IValueEntry? value) - { - return _entries.TryGetValue(property, out value); - } - public bool TryGetEntry(AvaloniaProperty property, [NotNullWhen(true)] out IValueEntry? entry) { return _entries.TryGetValue(property, out entry);