mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
- removed one part of assert because Junit does not pass:
org.eclipse.cdt.ui.tests.refactoring.extractlocalvariable.ExtractLocalVariableRefactoringTest.Bug 331963 Extract local variable doesn't put template type parameters Namespace
This commit is contained in:
parent
2d5b88f62e
commit
2c1d3433ab
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ public class CPPASTTemplateId extends CPPASTNameBase implements ICPPASTTemplateI
|
|||
|
||||
public void setTemplateName(IASTName name) {
|
||||
assertNotFrozen();
|
||||
assert !(name instanceof ICPPASTQualifiedName) && !(name instanceof ICPPASTTemplateId);
|
||||
assert !(name instanceof ICPPASTTemplateId);
|
||||
templateName = name;
|
||||
if (name != null) {
|
||||
name.setParent(this);
|
||||
|
|
Loading…
Add table
Reference in a new issue