Reports when getClass() method is called on java.lang.Class instance. This is usually a mistake as the result is + always equivalent to Class.class. If it's mistake then the getClass() call should be removed and qualifier should be used + directly. If the behavior is intended, then it's better to write Class.class explicitly to avoid confusion. +
+ +New in 2018.2
+ +