Ignore:
Timestamp:
Jan 31, 2018, 2:52:42 PM (7 years ago)
Author:
alloc
Message:

Fixes

Location:
binary-improvements/7dtd-server-fixes/src/JSON
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONArray.cs

    r309 r315  
    3636                                        stringBuilder.Append ('\n');
    3737                        }
    38                         if (stringBuilder.Length > 1)
     38                        if (nodes.Count > 0)
    3939                                stringBuilder.Remove (stringBuilder.Length - (prettyPrint ? 2 : 1), 1);
    4040                        if (prettyPrint)
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONObject.cs

    r309 r315  
    4848                                        stringBuilder.Append ('\n');
    4949                        }
    50                         if (stringBuilder.Length > 1)
     50                        if (nodes.Count > 0)
    5151                                stringBuilder.Remove (stringBuilder.Length - (prettyPrint ? 2 : 1), 1);
    5252                        if (prettyPrint)
Note: See TracChangeset for help on using the changeset viewer.