1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Finishing off AllTypesCache to put back the return nulls.

This commit is contained in:
Doug Schaefer 2006-04-21 16:22:41 +00:00
parent 2d22bce5ac
commit 04be564ed0

View file

@ -209,7 +209,9 @@ public class AllTypesCache {
* @return the matching type
*/
public static ITypeInfo getType(ICProject project, int type, IQualifiedTypeName qualifiedName) {
throw new PDOMNotImplementedError();
// TODO - seems to be only used when a namespace name is changed
// which would be pretty slow against the PDOM.
return null;
}
/**
@ -222,7 +224,9 @@ public class AllTypesCache {
* @return Array of types
*/
public static ITypeInfo[] getTypes(ICProject project, IQualifiedTypeName qualifiedName, boolean matchEnclosed, boolean ignoreCase) {
throw new PDOMNotImplementedError();
// TODO - seems to be only used when a class or namespace name is changed
// which would be pretty slow against the PDOM.
return new ITypeInfo[0];
}
}