Intellij automatically adding description of argument passed

Viewed 69

Intellij is automatically adding a descriptive "word" before an argument being passed to a method. For example

Thread.sleep(1000);

automatically becomes

Thread.sleep(millis: 1000);

Interestingly enough when copying and pasting to here the "millis" is left out. What is the name of this feature and how do I disable it so the IDE doesn't automatically add it? Is this valid Java code with the "millis" in it, or will it break if I try to use a different IDE/compiler?

4 Answers
Related