1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-30 11:43:33 +02:00

bug 72089

This commit is contained in:
Andrew Niefer 2004-08-17 18:52:41 +00:00
parent 0b1329118f
commit d781bc2502

View file

@ -634,7 +634,7 @@ public class SourceIndexerRequestor implements ISourceElementRequestor, IIndexCo
tempInt = (Integer) tempMarker.getAttribute(IMarker.LINE_NUMBER);
tempMsgString = (String) tempMarker.getAttribute(IMarker.MESSAGE);
if (tempInt.intValue()==problem.getSourceLineNumber() &&
tempMsgString.equals( INDEXER_MARKER_PREFIX + problem.getMessage()))
tempMsgString.equalsIgnoreCase( INDEXER_MARKER_PREFIX + problem.getMessage()))
{
newProblem = false;
break;