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
3333#pragma warning restore 618
3434 {
3535 get { return _cache ; }
36- set { _cache = value . AsCacheBase ( ) ; }
36+ set { _cache = value ? . AsCacheBase ( ) ; }
3737 }
3838
3939 // 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
2929#pragma warning restore 618
3030 {
3131 get { return _cache ; }
32- set { _cache = value . AsCacheBase ( ) ; }
32+ set { _cache = value ? . AsCacheBase ( ) ; }
3333 }
3434
3535 // 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
5151#pragma warning restore 618
5252 {
5353 get { return _cache ; }
54- set { _cache = value . AsCacheBase ( ) ; }
54+ set { _cache = value ? . AsCacheBase ( ) ; }
5555 }
5656
5757 // 6.0 TODO: make implicit and switch to auto-property
You can’t perform that action at this time.
0 commit comments