Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 85518 - [5.0][syntax highlighting] autoboxing: boxing in enhanced for loop not highlighted
Summary: [5.0][syntax highlighting] autoboxing: boxing in enhanced for loop not highli...
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 minor (vote)
Target Milestone: 3.1 M7   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-02-16 14:07 EST by Markus Keller CLA
Modified: 2005-04-25 09:34 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Markus Keller CLA 2005-02-16 14:07:17 EST
I20050215-2300

	static void foreach(Integer... ints) {
		for (int unboxed : ints) {
			System.out.println(unboxed);
		}
	}

	static void foreach(int... ints) {
		for (Integer boxed : ints) {
			System.out.println(boxed);
		}
	}

	static void foreach2(List<Integer> integers) {
		for (int unboxed : integers) {
			System.out.println(unboxed);
		}
	}
Comment 1 Tom Hofmann CLA 2005-04-25 09:34:08 EDT
fixed > 20050425