We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54c3cf commit 245d756Copy full SHA for 245d756
src/Lifetime/ContainerControlledLifetimeManager.cs
@@ -13,7 +13,6 @@ namespace Unity.Lifetime
13
/// </summary>
14
public class ContainerControlledLifetimeManager : SynchronizedLifetimeManager,
15
ISingletonLifetimePolicy,
16
- IBuildPlanPolicy,
17
IDisposable
18
{
19
@@ -42,21 +41,7 @@ public void Dispose()
42
41
Dispose(true);
43
GC.SuppressFinalize(this);
44
}
45
-
46
- /// <summary>
47
- /// Standard Dispose pattern implementation.
48
- /// </summary>
49
- /// <param name="disposing">Always true, since we don't have a finalizer.</param>
50
- protected virtual void Dispose(bool disposing)
51
- {
52
- if (Value == null) return;
53
- if (Value is IDisposable disposable)
54
55
- disposable.Dispose();
56
- }
57
- Value = null;
58
59
+
60
#endregion
61
62
0 commit comments