vote up 1 vote down star

I have an interface which is now empty, and extends another interface. I'd like to remove the empty interface and use the base interface, and am trying to find the correct refactoring in IntelliJ.

I've tried "remove middleman" but got "cannot perform the refactoring. The caret should be positioned at the name of the field to be refactored".

flag

63% accept rate

2 Answers

vote up 2 vote down

I think that what you're looking for is the "Type Migration" refactoring.

link|flag
Not working - I still get "The caret should be positioned..." error. – ripper234 Nov 5 at 16:17
Where are you applying the refactor ? This refactor has to be applied in the class of the field declaration. So if you have: A extends B .... private A myField; you can only apply this refactoring on A in the field declaration line. – Hugo Palma Nov 5 at 18:14
vote up 1 vote down

Looking at a blog post explaining the "Remove Middleman" refactoring in IDEA, I'd think you simply cannot use it for this. It's just for "replacing all calls to delegating methods with the equivalent direct calls".

(For a moment I thought another refactoring, "Use Interface Where Possible", might be of help, but I couldn't get that working either in my simple test case.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.