Skip to content

Commit

Permalink
Do not expose GetWeakReference() as public on Bindable<T>
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed Feb 26, 2024
1 parent 7a33912 commit 0ad9d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Framework/Bindables/Bindable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public Bindable<T> GetUnboundCopy()

IBindable IBindable.GetBoundCopy() => GetBoundCopy();

public WeakReference<Bindable<T>> GetWeakReference() => weakReference;
WeakReference<Bindable<T>> IBindable<T>.GetWeakReference() => weakReference;

IBindable<T> IBindable<T>.GetBoundCopy() => GetBoundCopy();

Expand Down

0 comments on commit 0ad9d94

Please sign in to comment.