Any support for refactoring external api changes?
已回答
I use the refactoring tools in my projects all the time. However, we have an external library, that is to say code build by a different team in a separated project, used in my project as a library dependency. They propose some refactorings of their code. Are there any tools in IntelliJ that would help me make the corresponding changes in my code? In this case, the refactorings will mostly consist of moving some of their classes to different packages, and a few renamings. I was hoping for a more efficient and reliable way to make the necessary changes rather than textual search and replace.
请先登录再写评论。
Could you describe your current workflow a bit more?
You could try using Structural Search & Replace feature to apply the needed changes to the whole project instead of making them file by file.
That's an excellent suggestion. I was not aware of that tool. Thank you.