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/MapRendering/Web/MimeType.cs

    r332 r351  
    568568                        };
    569569
    570                 public static string GetMimeType (string extension) {
    571                         if (extension == null) {
    572                                 throw new ArgumentNullException ("extension");
     570                public static string GetMimeType (string _extension) {
     571                        if (_extension == null) {
     572                                throw new ArgumentNullException ("_extension");
    573573                        }
    574574
    575                         if (!extension.StartsWith (".")) {
    576                                 extension = "." + extension;
     575                        if (!_extension.StartsWith (".")) {
     576                                _extension = "." + _extension;
    577577                        }
    578578
    579579                        string mime;
    580580
    581                         return _mappings.TryGetValue (extension, out mime) ? mime : "application/octet-stream";
     581                        return _mappings.TryGetValue (_extension, out mime) ? mime : "application/octet-stream";
    582582                }
    583583        }
Note: See TracChangeset for help on using the changeset viewer.