Makes FMS data never be a null string. (#900)

Fixes #895
This commit is contained in:
Thad House
2018-01-19 23:49:34 -08:00
committed by Peter Johnson
parent c00848c060
commit 02336fc478

View File

@@ -15,13 +15,13 @@ public class MatchInfoData {
* Stores the event name.
*/
@SuppressWarnings("MemberName")
public String eventName;
public String eventName = "";
/**
* Stores the game specific message.
*/
@SuppressWarnings("MemberName")
public String gameSpecificMessage;
public String gameSpecificMessage = "";
/**
* Stores the match number.