I have the following class:
public class MyClass { public static void main(String[] args) { System.out.println("abc"); } }
When I run the main method, "abc" prints as expected.
Then, after changing βabcβ from βdefβ, I got βabcβ instead of βdefβ. I tried to manually launch the "Create" button, but I got the same wrong result. In addition, on the tab "Event Log" every time I try to run this method, the message "All files are up to date" is logged, although I changed it to print.
If I right-click the file and select "Compile MyClass.java", everything will work as expected.
I have a problem with my workstation (xubuntu 14.04) after I changed my hard drive to SSD (if that matters). Other colleagues with SSD and without them do not have this problem, so I think that this may be the wrong IDEA configuration.
source share