1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Remove temporary statement added for debugging

Change-Id: Ib09141c840eb18cccfcbcf497597e22f3fcd4e02
This commit is contained in:
Nathan Ridge 2018-11-25 23:26:26 -05:00
parent d085e955c7
commit f94490939f

View file

@ -525,9 +525,6 @@ public class AST2TestBase extends SemanticTestBase {
final protected void assertNoProblemBindings(NameCollector col) { final protected void assertNoProblemBindings(NameCollector col) {
for (IASTName n : col.nameList) { for (IASTName n : col.nameList) {
if (n.getRawSignature().contains("waldo")) {
n.resolveBinding();
}
assertFalse("ProblemBinding for " + n.getRawSignature(), n.resolveBinding() instanceof IProblemBinding); assertFalse("ProblemBinding for " + n.getRawSignature(), n.resolveBinding() instanceof IProblemBinding);
} }
} }