This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static bool _scientistInitialized; | |
private static void InitializeResultPublisherAsNeeded() | |
{ | |
if (_scientistInitialized) return; | |
_scientistInitialized = true; | |
Scientist.ResultPublisher = new ResumeResultPublisher(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment