8000 Remove unused LazyProperty.Group · libgit2/libgit2sharp@053570a · GitHub
[go: up one dir, main page]

Skip to content

Commit 053570a

Browse files
committed
Remove unused LazyProperty.Group
1 parent 034dd8c commit 053570a

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

LibGit2Sharp/Core/LazyProperty.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,15 @@ public TType Value
2323
get { return Evaluate(); }
2424
}
2525

26-
internal LazyGroup Group
27-
{
28-
get { return lazyGroup; }
29-
}
30-
3126
private TType Evaluate()
3227
{
3328
if (!hasBeenEvaluated)
3429
{
35-
lock (Group)
30+
lock (lazyGroup)
3631
{
3732
if (!hasBeenEvaluated)
3833
{
39-
Group.TriggerEvaluation();
34+
lazyGroup.TriggerEvaluation();
4035
}
4136
}
4237
}

0 commit comments

Comments
 (0)
0