mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-31 20:23:26 +02:00
bug 72089
This commit is contained in:
parent
0b1329118f
commit
d781bc2502
1 changed files with 1 additions and 1 deletions
|
@ -634,7 +634,7 @@ public class SourceIndexerRequestor implements ISourceElementRequestor, IIndexCo
|
||||||
tempInt = (Integer) tempMarker.getAttribute(IMarker.LINE_NUMBER);
|
tempInt = (Integer) tempMarker.getAttribute(IMarker.LINE_NUMBER);
|
||||||
tempMsgString = (String) tempMarker.getAttribute(IMarker.MESSAGE);
|
tempMsgString = (String) tempMarker.getAttribute(IMarker.MESSAGE);
|
||||||
if (tempInt.intValue()==problem.getSourceLineNumber() &&
|
if (tempInt.intValue()==problem.getSourceLineNumber() &&
|
||||||
tempMsgString.equals( INDEXER_MARKER_PREFIX + problem.getMessage()))
|
tempMsgString.equalsIgnoreCase( INDEXER_MARKER_PREFIX + problem.getMessage()))
|
||||||
{
|
{
|
||||||
newProblem = false;
|
newProblem = false;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue