1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00

change to CPPASTCatchHandler constructor

This commit is contained in:
Mike Kucera 2008-01-14 20:50:26 +00:00
parent 46ea38b3b1
commit b90fcb3b0c

View file

@ -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);
}