From b90fcb3b0c2d2e1c62f7df53030837111e1cf08c Mon Sep 17 00:00:00 2001 From: Mike Kucera Date: Mon, 14 Jan 2008 20:50:26 +0000 Subject: [PATCH] change to CPPASTCatchHandler constructor --- .../cdt/internal/core/dom/parser/cpp/CPPASTCatchHandler.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); }