Fixed Event.Valueless#toString() to not display the null value

This commit is contained in:
Kai S. K. Engelbart 2020-02-12 22:15:42 +01:00
parent ba098d3545
commit 3c8b5291ed
1 changed files with 3 additions and 0 deletions

View File

@ -42,5 +42,8 @@ public abstract class Event<T> implements Serializable {
private static final long serialVersionUID = -9019362144094097997L;
protected Valueless() { super(null); }
@Override
public String toString() { return this.getClass().getSimpleName(); }
}
}