TrueFXTickEvent: add whitespace in toString() output

This commit is contained in:
2018-06-20 22:48:42 -07:00
parent a03ba9a883
commit b5887381f3

View File

@ -92,6 +92,6 @@ public class TrueFXTickEvent extends TickEvent {
* Return a human readable representation of this event.
*/
public String toString() {
return String.format("TrueFXTickEvent[%s,%s,%s]", time, instrument, getMid());
return String.format("TrueFXTickEvent[%s, %s, %s]", time, instrument, getMid());
}
}