View | Details | Raw Unified | Return to bug 83032 | Differences between
and this patch

Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/ast/TypeDeclaration.java (-1 / +5 lines)
Lines 372-378 Link Here
372
		cd.selector = new char[] { 'x' }; //no maining
372
		cd.selector = new char[] { 'x' }; //no maining
373
		cd.sourceStart = sourceStart;
373
		cd.sourceStart = sourceStart;
374
		cd.sourceEnd = sourceEnd;
374
		cd.sourceEnd = sourceEnd;
375
		cd.modifiers = modifiers & AccVisibilityMASK;
375
		int newModifiers = modifiers & AccVisibilityMASK;
376
		if (inheritedConstructorBinding.isVarargs()) {
377
			newModifiers |= AccVarargs;
378
		}
379
		cd.modifiers = newModifiers;
376
		cd.isDefaultConstructor = true;
380
		cd.isDefaultConstructor = true;
377
381
378
		if (argumentsLength > 0) {
382
		if (argumentsLength > 0) {

Return to bug 83032