Reports using PsiElement.getText when comparing with a string and suggests replacing it with PsiElement.textMatches.

Example:


  psiElement.getText == "null"

After the quick-fix is applied:


  psiElement.textMatches("null")