You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(java-auto-test): ensure thread safety when finding and parsing PsiJavaFile
Previously, the `PsiJavaFile` was loaded without ensuring thread safety, which could lead to race conditions and inconsistent results. This commit introduces a `runReadAction` block to guarantee that the file is loaded and parsed in a thread-safe manner, preventing potential issues with concurrent access.
0 commit comments