Skip to content

Commit 65aa217

Browse files
committed
Reorder
1 parent 816f494 commit 65aa217

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/DurableSDK/OrchestrationContext.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ public class OrchestrationContext
3939

4040
private readonly Lazy<string> _version;
4141

42-
public OrchestrationContext()
43-
{
44-
_version = new Lazy<string>(() => OrchestrationVersionExtractor.GetVersionFromHistory(History));
45-
}
46-
4742
public string Version
4843
{
4944
get
5045
{
5146
return _version.Value;
5247
}
5348
}
49+
50+
public OrchestrationContext()
51+
{
52+
_version = new Lazy<string>(() => OrchestrationVersionExtractor.GetVersionFromHistory(History));
53+
}
5454
}
5555
}

0 commit comments

Comments
 (0)