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

follow-up for fix for [Bug 196048] Updating .cproject from CVS does not cause reload of settings

This commit is contained in:
Mikhail Sennikovsky 2007-07-26 14:33:51 +00:00
parent 51df494668
commit 48742033a5

View file

@ -161,7 +161,8 @@ public class ResourceChangeHandler extends ResourceChangeHandlerBase implements
flags |= CProjectDescriptionManager.INTERNAL_GET_IGNORE_CLOSE;
flags |= CProjectDescriptionManager.GET_WRITABLE;
des = fMngr.getProjectDescription(project, flags);
fProjDesMap.put(project, des);
if(des != null)
fProjDesMap.put(project, des);
}
return des;
}