What does it mean when a method is an intellij italic idea?

By default, an idea shows some italic methods when we call them:

Example:

Authentication auth = SecurityContextHolder.getContext().getAuthentication(); 

getContext () is italicized, but getAuthentication () doesn't mean what does it mean?

+7
java intellij-idea intellij-14
source share
1 answer

A method written in italics indicates that this method is a static method.

+16
source share

All Articles