Skip to content

Commit 3f695c7

Browse files
committed
Moved instantiation after internal initialization.
1 parent 70d164c commit 3f695c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataStructures/Common/PrimesList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public static PrimesList Instance
4949
{
5050
if (_instance == null)
5151
{
52-
_instance = new PrimesList();
5352
_initializeData();
53+
_instance = new PrimesList();
5454
}
5555
}
5656
}

0 commit comments

Comments
 (0)