File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public ICache Cache
33
33
#pragma warning restore 618
34
34
{
35
35
get { return _cache ; }
36
- set { _cache = value . AsCacheBase ( ) ; }
36
+ set { _cache = value ? . AsCacheBase ( ) ; }
37
37
}
38
38
39
39
// 6.0 TODO: make implicit and switch to auto-property
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public ICache Cache
29
29
#pragma warning restore 618
30
30
{
31
31
get { return _cache ; }
32
- set { _cache = value . AsCacheBase ( ) ; }
32
+ set { _cache = value ? . AsCacheBase ( ) ; }
33
33
}
34
34
35
35
// 6.0 TODO: make implicit and switch to auto-property
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public ICache Cache
51
51
#pragma warning restore 618
52
52
{
53
53
get { return _cache ; }
54
- set { _cache = value . AsCacheBase ( ) ; }
54
+ set { _cache = value ? . AsCacheBase ( ) ; }
55
55
}
56
56
57
57
// 6.0 TODO: make implicit and switch to auto-property
You can’t perform that action at this time.
0 commit comments