Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ: Some classes have changed message

The following message is shown with regards to the SlottingTest2 file:

enter image description here

I know I have not changed any other file than SlottingTest2.java (at least not intentionally). So what does this message mean, and what might trigger it? Could it be referring to changes others have made in an upstream Git repo?

like image 626
flow2k Avatar asked Dec 19 '22 08:12

flow2k


1 Answers

You probably have a debug session running. After you have updated and recompiled (possibly automatically) your file , Intellij suggests to reload the updated version of your .class into your debugging session.

To get rid of the warning, you can either make it automatic or disabled using the following setting:

Configure HotSwap reload

like image 54
Konstantin Levinski Avatar answered Dec 29 '22 07:12

Konstantin Levinski