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

Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/model/AbstractJavaModelTests.java (+7 lines)
Lines 127-132 Link Here
127
				}
127
				}
128
			};
128
			};
129
			org.eclipse.jdt.internal.core.util.Util.sort(elementDeltas, comparer);
129
			org.eclipse.jdt.internal.core.util.Util.sort(elementDeltas, comparer);
130
			for (int i = 0, max = elementDeltas.length; i < max; i++) {
131
				IJavaElementDelta delta = elementDeltas[i];
132
				IJavaElementDelta[] children = delta.getAffectedChildren();
133
				if (children != null) {
134
					sortDeltas(children);
135
				}
136
			}
130
		}
137
		}
131
		public String toString() {
138
		public String toString() {
132
			StringBuffer buffer = new StringBuffer();
139
			StringBuffer buffer = new StringBuffer();

Return to bug 161555