"GlobalSearchScope.directoryScope()" deprecated?

Answered

Can't resolve "directoryScope()", is it deprecated?

What can I use instead?

my code:

GlobalSearchScope sandboxScope = GlobalSearchScope.directoryScope(psiDirectory, true);

1
1 comment

It seems there's a typo (missing "s") in your code:

GlobalSearchScopes.directoryScope(...)

 

1

Please sign in to leave a comment.