mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Patch from Alex Chapiro to fix a bug
This commit is contained in:
parent
aa2f55b2f1
commit
de30a4ac8b
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ public class CProjectNature implements IProjectNature {
|
||||||
System.arraycopy(commands, 0, newCommands, 0, i);
|
System.arraycopy(commands, 0, newCommands, 0, i);
|
||||||
System.arraycopy(commands, i + 1, newCommands, i, commands.length - i - 1);
|
System.arraycopy(commands, i + 1, newCommands, i, commands.length - i - 1);
|
||||||
description.setBuildSpec(newCommands);
|
description.setBuildSpec(newCommands);
|
||||||
return;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
getProject().setDescription(description, mon);
|
getProject().setDescription(description, mon);
|
||||||
|
|
Loading…
Add table
Reference in a new issue