Reports the usage of .getText.contains(char) on PsiElement or ASTNode and suggests replacing it with PsiElement.textContains(char).

Example:


  psiElement.getText.contains('x')

After the quick-fix is applied:


  psiElement.textContains('x')