1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Fix handle restore for source roots

This commit is contained in:
Anton Leherbauer 2008-03-14 07:57:12 +00:00
parent 7e112a866e
commit 319bbd5dfb

View file

@ -753,7 +753,7 @@ public class CProject extends Openable implements ICProject {
token = memento.nextToken();
char firstChar = token.charAt(0);
if (firstChar != CEM_SOURCEFOLDER && firstChar != CEM_TRANSLATIONUNIT) {
rootPath.append(token);
rootPath= rootPath.append(token);
token= null;
} else {
break;