架构大更

This commit is contained in:
SoulliesOfficial
2026-03-20 11:56:50 -04:00
parent e60ef64d01
commit d09b58fd80
3663 changed files with 15232012 additions and 105579 deletions

View File

@@ -4,8 +4,8 @@ namespace UniRx.Operators
{
internal class SynchronizedObserver<T> : IObserver<T>
{
readonly IObserver<T> observer;
readonly object gate;
private readonly object gate;
private readonly IObserver<T> observer;
public SynchronizedObserver(IObserver<T> observer, object gate)
{
@@ -37,4 +37,4 @@ namespace UniRx.Operators
}
}
}
}
}