SILUBS.ScriptureChecks.QTokenProcessor.Output C# (CSharp) Method

Output() private method

Adds the text token substring of a quotation related token to the list of results. At this point the message of the substring is either an error or trace message.
private Output ( TextTokenSubstring tts ) : void
tts SILUBS.SharedScrUtils.TextTokenSubstring The text token substring being processed
return void
		private void Output(TextTokenSubstring tts)
		{
			if (m_desiredKey == string.Empty || m_desiredKey == tts.InventoryText)
				m_results.Add(tts);
		}