You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do I update a method calls references? So let's say I'm using a method from an API with fully qualified name org.example.Example and the function exampleFunction. Let's say in a future version exampleFunction is moved to another class org.example.ExampleV2. Then how do I update all method calls from org.example.Example.exampleFunction to org.example.ExampleV2.exampleFunction. Stuff like imports, type declarations, constructor calls etc.. have to be updated
The text was updated successfully, but these errors were encountered:
How do I update a method calls references? So let's say I'm using a method from an API with fully qualified name
org.example.Example
and the functionexampleFunction
. Let's say in a future versionexampleFunction
is moved to another classorg.example.ExampleV2
. Then how do I update all method calls fromorg.example.Example.exampleFunction
toorg.example.ExampleV2.exampleFunction
. Stuff like imports, type declarations, constructor calls etc.. have to be updatedThe text was updated successfully, but these errors were encountered: