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/MalformedJSONException.cs

    r325 r351  
    77                }
    88
    9                 public MalformedJSONException (string message) : base (message) {
     9                public MalformedJSONException (string _message) : base (_message) {
    1010                }
    1111
    12                 public MalformedJSONException (string message, Exception inner) : base (message, inner) {
     12                public MalformedJSONException (string _message, Exception _inner) : base (_message, _inner) {
    1313                }
    1414
    15                 protected MalformedJSONException (SerializationInfo info, StreamingContext context) : base (info, context) {
     15                protected MalformedJSONException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) {
    1616                }
    1717        }
Note: See TracChangeset for help on using the changeset viewer.