Reports using PsiElement.getText when comparing with a string and suggests replacing it with PsiElement.textMatches.
PsiElement.getText
PsiElement.textMatches
Example:
psiElement.getText == "null"
After the quick-fix is applied:
psiElement.textMatches("null")