1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Do not use cached build info when saving. See bug #125814

This commit is contained in:
Norbert Pltt 2006-03-28 06:38:58 +00:00
parent 932f829054
commit 595dadd8b4

View file

@ -75,7 +75,7 @@ public class ErrorParserBlock extends AbstractErrorParserBlock {
* java.lang.String[])
*/
public void saveErrorParsers(IProject project, String[] parserIDs) throws CoreException {
if (getContainer().getProject() != null && fBuildInfo == null) {
if (getContainer().getProject() != null) {
try {
fBuildInfo = MakeCorePlugin.createBuildInfo(getContainer().getProject(), MakeBuilder.BUILDER_ID);
} catch (CoreException e) {