Commit 9a5c2343 authored by Dmitry Semeniouta's avatar Dmitry Semeniouta
Browse files

PsiDocumentManager: logging fix

parent 3c6aa0f1
Branches unavailable Tags unavailable
No related merge requests found
Showing with 6 additions and 2 deletions
+6 -2
......@@ -374,8 +374,12 @@ public abstract class PsiDocumentManagerBase extends PsiDocumentManager implemen
});
}
catch (Throwable e) {
LOG.error(e);
forceReload(virtualFile, viewProvider);
try {
forceReload(virtualFile, viewProvider);
}
finally {
LOG.error(e);
}
}
finally {
if (success.get()) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment