Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 83992
Collapse All | Expand All

(-)src/org/eclipse/core/internal/resources/MarkerAttributeMap.java (-1 / +2 lines)
Lines 267-273 Link Here
267
		Object[] array = elements;
267
		Object[] array = elements;
268
		if (array == null)
268
		if (array == null)
269
			return;
269
			return;
270
		for (int i = 0; i < array.length; i++) {
270
		//don't share keys because they are already interned
271
		for (int i = 1; i < array.length; i = i + 2) {
271
			Object o = array[i];
272
			Object o = array[i];
272
			if (o instanceof String)
273
			if (o instanceof String)
273
				array[i] = set.add((String)o);
274
				array[i] = set.add((String)o);

Return to bug 83992