mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-31 12:55:40 +02:00
make existsErrors protected so it can be overridden if necessary.
This commit is contained in:
parent
b44954c965
commit
e552cc6d3a
1 changed files with 1 additions and 1 deletions
|
@ -658,7 +658,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
|
|||
* The project to search
|
||||
* @return true if compile errors exist, otherwise false
|
||||
*/
|
||||
private boolean existsErrors(IProject proj) throws CoreException {
|
||||
protected boolean existsErrors(IProject proj) throws CoreException {
|
||||
IMarker[] markers = proj.findMarkers(ICModelMarker.C_MODEL_PROBLEM_MARKER, true, IResource.DEPTH_INFINITE);
|
||||
|
||||
if (markers.length > 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue