Skip to content

Instantly share code, notes, and snippets.

@rubenquadros
Last active July 29, 2022 17:48
Show Gist options
  • Save rubenquadros/bf18277b412b94ec06f9c66f8104caf2 to your computer and use it in GitHub Desktop.
Save rubenquadros/bf18277b412b94ec06f9c66f8104caf2 to your computer and use it in GitHub Desktop.
Reset notification and code analysis
// Update notifications
EditorNotifications.getInstance(project).updateAllNotifications()
// Restart the analysis
PsiManager.getInstance(project).apply {
dropPsiCaches()
dropResolveCaches()
}
DaemonCodeAnalyzer.getInstance(project).restart()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment