0.2h Only add a newline if not empty
This commit is contained in:
parent
453cc8ad41
commit
aa771c0cbb
@ -34,7 +34,13 @@ public class MassiveException extends Exception
|
|||||||
public MassiveException setMsg(String msg, Object... objects) { this.messages = Mson.parse(msg, objects); return this; }
|
public MassiveException setMsg(String msg, Object... objects) { this.messages = Mson.parse(msg, objects); return this; }
|
||||||
|
|
||||||
// Add single
|
// Add single
|
||||||
public MassiveException addMessage(Object part) { this.messages = this.messages.add(Mson.mson("\n", part)); return this; }
|
public MassiveException addMessage(Object part)
|
||||||
|
{
|
||||||
|
// Only add a newline if not empty.
|
||||||
|
Mson mson = this.messages.isEmpty() ? Mson.mson(part) : Mson.mson("\n", part);
|
||||||
|
this.messages = this.messages.add(mson);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
public MassiveException addMsg(String msg) { return this.addMessage(Mson.parse(msg)); }
|
public MassiveException addMsg(String msg) { return this.addMessage(Mson.parse(msg)); }
|
||||||
public MassiveException addMsg(String msg, Object... args) { return this.addMessage(Mson.parse(msg, args)); }
|
public MassiveException addMsg(String msg, Object... args) { return this.addMessage(Mson.parse(msg, args)); }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user