Rename register methods to better explain their purpose

This commit is contained in:
Dean Herbert
2022-01-24 14:37:36 +09:00
parent d7a9c5fd41
commit 40aa873190
15 changed files with 27 additions and 27 deletions

View File

@ -48,7 +48,7 @@ namespace osu.Game.Screens.Select.Carousel
ruleset.BindValueChanged(_ =>
{
scoreSubscription?.Dispose();
scoreSubscription = realmFactory.Register(realm =>
scoreSubscription = realmFactory.RegisterForNotifications(realm =>
realm.All<ScoreInfo>()
.Filter($"{nameof(ScoreInfo.User)}.{nameof(RealmUser.OnlineID)} == $0"
+ $" && {nameof(ScoreInfo.BeatmapInfo)}.{nameof(BeatmapInfo.ID)} == $1"