AutoWikiBrowser.MainForm.LoadDatedTemplates C# (CSharp) Method

LoadDatedTemplates() private method

private LoadDatedTemplates ( ) : void
return void
        private void LoadDatedTemplates()
        {
            string text;
            DatedTemplatesLoaded = true;
            try
            {
                text = TheSession.Editor.SynchronousEditor.Clone().Open("Project:AutoWikiBrowser/Dated templates", true);
            }
            catch
            {
                text = "";
            }

            if (text.Length > 0)
                WikiRegexes.DatedTemplates = Parsers.LoadDatedTemplates(text);
        }
MainForm