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 034dd8c commit 053570aCopy full SHA for 053570a
LibGit2Sharp/Core/LazyProperty.cs
@@ -23,20 +23,15 @@ public TType Value
23
get { return Evaluate(); }
24
}
25
26
- internal LazyGroup Group
27
- {
28
- get { return lazyGroup; }
29
- }
30
-
31
private TType Evaluate()
32
{
33
if (!hasBeenEvaluated)
34
35
- lock (Group)
+ lock (lazyGroup)
36
37
38
39
- Group.TriggerEvaluation();
+ lazyGroup.TriggerEvaluation();
40
41
42
0 commit comments