Bug 13844, turned off non line based detectors.

This commit is contained in:
nhotta%netscape.com 1999-09-15 19:31:46 +00:00
Родитель cde8e572b0
Коммит 6295c83892
2 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -55,13 +55,17 @@ extern "C" NS_EXPORT nsresult NSGetFactory(nsISupports* aServMgr,
nsIFactory *factory = nsnull;
if (aClass.Equals(kJAClassicDetectorCID)) {
factory = NEW_JA_CLASSICDETECTOR_FACTORY();
;
//bug#13844 disable this until find out the reason of the freeze
//factory = NEW_JA_CLASSICDETECTOR_FACTORY();
} else if (aClass.Equals(kJAClassicStringDetectorCID)) {
factory = NEW_JA_STRING_CLASSICDETECTOR_FACTORY();
#if 0
} else if (aClass.Equals(kKOClassicDetectorCID)) {
factory = NEW_KO_CLASSICDETECTOR_FACTORY();
} else if (aClass.Equals(kKOClassicStringDetectorCID)) {
factory = NEW_KO_STRING_CLASSICDETECTOR_FACTORY();
#endif
}
if(nsnull != factory) {

Просмотреть файл

@ -55,11 +55,13 @@ extern "C" NS_EXPORT nsresult NSGetFactory(nsISupports* aServMgr,
nsIFactory *factory = nsnull;
if (aClass.Equals(kJANativeDetectorCID)) {
factory = NEW_JA_NATIVEDETECTOR_FACTORY();
;
//bug#13844 disable this until find out the reason of the freeze
//factory = NEW_JA_NATIVEDETECTOR_FACTORY();
} else if (aClass.Equals(kJANativeStringDetectorCID)) {
factory = NEW_JA_STRING_NATIVEDETECTOR_FACTORY();
} else if (aClass.Equals(kKONativeDetectorCID)) {
factory = NEW_KO_NATIVEDETECTOR_FACTORY();
;factory = NEW_KO_NATIVEDETECTOR_FACTORY();
} else if (aClass.Equals(kKONativeStringDetectorCID)) {
factory = NEW_KO_STRING_NATIVEDETECTOR_FACTORY();
}