Ignore:
Timestamp:
Jan 19, 2019, 6:12:21 PM (6 years ago)
Author:
alloc
Message:

Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)

File:
1 edited

Legend:

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

    r326 r351  
    33namespace AllocsFixes.JSON {
    44        public class JSONNull : JSONValue {
    5                 public override void ToString (StringBuilder stringBuilder, bool prettyPrint = false, int currentLevel = 0) {
    6                         stringBuilder.Append ("null");
     5                public override void ToString (StringBuilder _stringBuilder, bool _prettyPrint = false, int _currentLevel = 0) {
     6                        _stringBuilder.Append ("null");
    77                }
    88
    9                 public static JSONNull Parse (string json, ref int offset) {
     9                public static JSONNull Parse (string _json, ref int _offset) {
    1010                        //Log.Out ("ParseNull enter (" + offset + ")");
    1111
    12                         if (!json.Substring (offset, 4).Equals ("null")) {
     12                        if (!_json.Substring (_offset, 4).Equals ("null")) {
    1313                                throw new MalformedJSONException ("No valid null value found");
    1414                        }
    1515
    1616                        //Log.Out ("JSON:Parsed Null");
    17                         offset += 4;
     17                        _offset += 4;
    1818                        return new JSONNull ();
    1919                }
Note: See TracChangeset for help on using the changeset viewer.