View | Details | Raw Unified | Return to bug 80597
Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/ast/ArrayAllocationExpression.java (+1 lines)
Lines 130-135 Link Here
130
			} else if (explicitDimIndex> 0) {
130
			} else if (explicitDimIndex> 0) {
131
				// should not have an empty dimension before an non-empty one
131
				// should not have an empty dimension before an non-empty one
132
				scope.problemReporter().incorrectLocationForEmptyDimension(this, i);
132
				scope.problemReporter().incorrectLocationForEmptyDimension(this, i);
133
				explicitDimIndex = -1;
133
			}
134
			}
134
		}
135
		}
135
136

Return to bug 80597