1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 12:25:35 +02:00

added a null pointer check to the PathEntry Var manager

This commit is contained in:
Mikhail Sennikovsky 2007-02-28 10:12:50 +00:00
parent 3af158b7d9
commit 871c565145

View file

@ -163,6 +163,9 @@ public class CdtVarPathEntryVariableManager implements
}
public IPath resolvePath(IPath path) {
if(path == null)
return null;
String str = path.toPortableString();
try {