mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Fix for bugzilla 78207: Project References hides build error markers.
The same logic applies to the refresh operation on referenced projects as it did for the problem markers. It is no longer necessary given the way the build is sequenced and this avoids needless thrashing in the workspace.
This commit is contained in:
parent
0069e2dae3
commit
5360159a8d
1 changed files with 0 additions and 4 deletions
|
@ -642,10 +642,6 @@ public class GeneratedMakefileBuilder extends ACBuilder {
|
|||
monitor.subTask(ManagedMakeMessages.getResourceString(REFRESH));
|
||||
try {
|
||||
currentProject.refreshLocal(IResource.DEPTH_INFINITE, null);
|
||||
for (int j = 0; j < referencedProjects.length; ++j) {
|
||||
IProject project = referencedProjects[j];
|
||||
project.refreshLocal(IResource.DEPTH_INFINITE, null);
|
||||
}
|
||||
} catch (CoreException e) {
|
||||
monitor.subTask(ManagedMakeMessages.getResourceString(REFRESH_ERROR));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue