1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Turned off the test info provider for finding function matches. This has been killing us trying to test content assist.

This commit is contained in:
Doug Schaefer 2005-06-23 19:30:42 +00:00
parent 3d4b84023f
commit 9d761485f0

View file

@ -72,7 +72,8 @@ public class CHelpTestInfoProvider implements ICHelpProvider {
ICHelpInvocationContext context, ICHelpBook[] helpBooks,
String prefix) {
Assert.assertTrue("getMatchingFunctions is called before completion contributor gets initialized",fIsInitialized);
return CHelpProviderTester.getDefault().generateMatchingFunctions(helpBooks,prefix,fProviderID);
return null; // TODO returning null until someone puts in a preference to control it.
//return CHelpProviderTester.getDefault().generateMatchingFunctions(helpBooks,prefix,fProviderID);
}
/* (non-Javadoc)