diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTCatchHandler.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTCatchHandler.java index 60501b59324..afa70d2f60b 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTCatchHandler.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPASTCatchHandler.java @@ -29,8 +29,7 @@ public class CPPASTCatchHandler extends CPPASTNode implements ICPPASTCatchHandle public CPPASTCatchHandler() { } - public CPPASTCatchHandler(boolean isCatchAll, IASTStatement body, IASTDeclaration declaration) { - this.isCatchAll = isCatchAll; + public CPPASTCatchHandler(IASTDeclaration declaration, IASTStatement body) { setCatchBody(body); setDeclaration(declaration); }