Automatically update all files in a project?
If I add new parameters to a method changing somethings like parseString(String s) to parseString(String s, Boolean b) but I have already called parseString(String s) it will make errors because it now needs a boolean to work.
It only updates and tells me about errors in that file or in files after I open them. In Eclipe if I change something like that, instantly a couple of files will start to show errors without me have to open them or anything, is there any way to make IntelliJ do this as well?
请先登录再写评论。
A couple of notes...
Eclipse does this by using an alternate to the JDK's Javac compiler. Whereas the javac compiler stops upon hitting an error, the Eclipse compiler continues to compile what it can. To turn this on in IDEA: