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:
parent
7e112a866e
commit
319bbd5dfb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue