Why is VS Code showing this these labels or parameter names for System.out.println() in java files?

See Random things such as “s:”, “x:”, and name of parameters are showing up inside of my print statements: java extension issues.

It’s a new feature introduced in 1.5.0, called inlay hint. We use that
to display the parameter names of those arguments.

If you do not want to have them in your editor, you can set the
setting java.inlayHints.parameterNames.enabled to none

Leave a Comment