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

Collapse All | Expand All

(-)formatter/org/eclipse/jdt/internal/formatter/Scribe.java (-1 / +1 lines)
Lines 118-124 Link Here
118
	 * retrieve correct upper and lower bounds and replace the region.
118
	 * retrieve correct upper and lower bounds and replace the region.
119
	 */
119
	 */
120
	private void adaptRegions() {
120
	private void adaptRegions() {
121
		this.adaptedRegions = new Region[this.regions.length];
121
		this.adaptedRegions = new IRegion[this.regions.length];
122
		for (int i = 0, max = this.regions.length; i < max; i++) {
122
		for (int i = 0, max = this.regions.length; i < max; i++) {
123
			IRegion aRegion = this.regions[i];
123
			IRegion aRegion = this.regions[i];
124
			int offset = aRegion.getOffset();
124
			int offset = aRegion.getOffset();

Return to bug 210922