Ignore:
Timestamp:
Aug 7, 2022, 3:02:24 PM (2 years ago)
Author:
alloc
Message:

Major refactoring/cleanup

File:
1 edited

Legend:

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

    r389 r391  
    33
    44namespace AllocsFixes.JSON {
    5         public class JSONNull : JSONValue {
     5        public class JsonNull : JsonValue {
    66                public override void ToString (StringBuilder _stringBuilder, bool _prettyPrint = false, int _currentLevel = 0) {
    77                        _stringBuilder.Append ("null");
    88                }
    99
    10                 public static JSONNull Parse (string _json, ref int _offset) {
     10                public static JsonNull Parse (string _json, ref int _offset) {
    1111                        //Log.Out ("ParseNull enter (" + offset + ")");
    1212
    1313                        if (!_json.Substring (_offset, 4).Equals ("null")) {
    14                                 throw new MalformedJSONException ("No valid null value found");
     14                                throw new MalformedJsonException ("No valid null value found");
    1515                        }
    1616
    1717                        //Log.Out ("JSON:Parsed Null");
    1818                        _offset += 4;
    19                         return new JSONNull ();
     19                        return new JsonNull ();
    2020                }
    2121
Note: See TracChangeset for help on using the changeset viewer.