minor NPE check.
This commit is contained in:
parent
9e2ed40587
commit
90c5d07898
|
@ -2174,7 +2174,7 @@ public abstract class PO
|
|||
if (!save()) {
|
||||
String msg = null;
|
||||
ValueNamePair err = CLogger.retrieveError();
|
||||
String val = Msg.translate(getCtx(), err.getValue());
|
||||
String val = err != null ? Msg.translate(getCtx(), err.getValue()) : "";
|
||||
if (err != null)
|
||||
msg = (val != null ? val + ": " : "") + err.getName();
|
||||
if (msg == null || msg.length() == 0)
|
||||
|
|
Loading…
Reference in New Issue