Bug 81074 - [5.0] Format misbehaviour for extract interface on methods with ?-wildcard
Summary: [5.0] Format misbehaviour for extract interface on methods with ?-wildcard
Status: RESOLVED DUPLICATE of bug 81085
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Tobias Widmer CLA
QA Contact:
URL:
Whiteboard:
Keywords:
: 81072 81073 (view as bug list)
Depends on:
Blocks:
 
Reported: 2004-12-15 05:19 EST by Erol Koç CLA
Modified: 2005-01-03 07:08 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Erol Koç CLA 2004-12-15 05:19:52 EST
Using I200412142000

On the following class:
public class GenericClass<T> {
	public void foo(List<?> list) {
	}
	
	public void bar(List<Integer> list) {
		
	}
}

Extract interface leads to the following result:
public interface IGenClass<T> {
	public abstract void foo(List< ? > list);

	public abstract void bar(List<Integer> list);
}

Where spaces appear before and after the ?-wildcard.
Comment 1 Tobias Widmer CLA 2004-12-15 05:22:42 EST
*** Bug 81072 has been marked as a duplicate of this bug. ***
Comment 2 Tobias Widmer CLA 2004-12-15 05:24:16 EST
*** Bug 81073 has been marked as a duplicate of this bug. ***
Comment 3 Tobias Widmer CLA 2005-01-03 07:08:28 EST

*** This bug has been marked as a duplicate of 81085 ***