Skip to content

Commit

Permalink
Reverted to IEnumerable
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Leonenko committed Jul 4, 2024
1 parent 64c078a commit 9e39d79
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Softeq.XToolkit.WhiteLabel.Droid/FragmentBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System;
using System.Collections.Generic;
using System.Linq;
using Android.OS;
using AndroidX.Fragment.App;
using Softeq.XToolkit.Bindings;
Expand Down Expand Up @@ -85,9 +86,9 @@ protected virtual void DoDetachBindings()
_commandsSubscriptions.Clear();
}

protected virtual IList<IDisposable> SetCommandsWithDisposing()
protected virtual IEnumerable<IDisposable> SetCommandsWithDisposing()
{
return new List<IDisposable>();
return [];
}

protected virtual void OnViewModelRestored()
Expand Down

0 comments on commit 9e39d79

Please sign in to comment.