This commit is contained in:
2018-09-18 18:11:10 +00:00
parent 39530bf493
commit 6bbacbe731

View File

@@ -20,6 +20,18 @@ namespace AyaNova.Biz
{ {
var StopWords = GetStopWords(ct, localeId); var StopWords = GetStopWords(ct, localeId);
//Get CJK index bool flag.
//TODO: should this be a property of the locale or a global setting as before??
//if it's a locale property, it could be stored as just another word in the locale dictionary rather than getting into other aspects or maybe it belongs as a bool value on the
//locale record itself?
// //get a db and logger // //get a db and logger
// ILogger log = AyaNova.Util.ApplicationLogging.CreateLogger("PrimeData"); // ILogger log = AyaNova.Util.ApplicationLogging.CreateLogger("PrimeData");
@@ -39,6 +51,8 @@ namespace AyaNova.Biz
} }
//Get the current stopwords for the user's locale
private static List<string> GetStopWords(AyContext ct, long localeId) private static List<string> GetStopWords(AyContext ct, long localeId)
{ {
//Get stopwords //Get stopwords
@@ -64,6 +78,10 @@ namespace AyaNova.Biz
} }
return StopWords; return StopWords;
} }
}//eoc }//eoc
}//eons }//eons