hey.. is is possible to refactor a method argument...
# intellij
d
hey.. is is possible to refactor a method argument of a concrete class into an Interface? Example:
public void doSth(Foo foo)
should become
public void doSth(FooInterface foo)
and FooInterface provides all methods used in doSth?