1
0
Fork 0
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:
Warren Paul 2008-10-27 19:56:44 +00:00
parent b44954c965
commit e552cc6d3a

View file

@ -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) {