SIL.CoreImpl.PalasoWritingSystemManager.LangTagInUse C# (CSharp) Method

LangTagInUse() private method

Determines whether or not the specified language tag is in use by another writing system in either the local or global writing system store.
private LangTagInUse ( string identifier ) : bool
identifier string The language tag to check.
return bool
		private bool LangTagInUse(string identifier)
		{
			lock (m_syncRoot)
				return m_localStore.Contains(identifier) || (m_globalStore != null && m_globalStore.Contains(identifier));
		}