At some point, my IntelliJ started to automatically add this
to the final members of the class.
And it seems like it does it when clicking outside of the code window.
So it automatically changes
class My{
private final Dog dog;
...
dog.eat()
}
To
class My{
private final Dog dog;
...
this.dog.eat()
}
How can I make this stop?