mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
IJPL-578 Fix NPE in CompoundRuntimeException.processAll that prevents real error to be printed
GitOrigin-RevId: 14e999ce928297a166e310fee8f620b9126c0558
This commit is contained in:
committed by
intellij-monorepo-bot
parent
3d4d957326
commit
5d2aa3fa9b
@@ -66,7 +66,7 @@ public final class CompoundRuntimeException extends RuntimeException {
|
||||
if (stringProcessor != null) {
|
||||
stringProcessor.accept(s);
|
||||
}
|
||||
return s;
|
||||
return s == null ? "" : s;
|
||||
}
|
||||
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
Reference in New Issue
Block a user