Skip to content

Commit d7379f5

Browse files
committed
Revert wrong fix
1 parent 58a1148 commit d7379f5

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Main/src/Lazy.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
// Same functionality already exists in TPL for 3.5 used in FW 3.5 targeting, so we exclude it from FW3.5 version
2-
#if !FW35
3-
using System;
1+
using System;
42
using System.Threading;
53

64
using JetBrains.Annotations;
@@ -80,5 +78,4 @@ public static class Lazy
8078
/// <returns>New <see cref="Lazy{T}"/> instance.</returns>
8179
public static Lazy<T> Create<T>(Func<T> valueFactory, LazyThreadSafetyMode mode) => new Lazy<T>(valueFactory, mode);
8280
}
83-
}
84-
#endif
81+
}

0 commit comments

Comments
 (0)