Skip to content
This repository has been archived by the owner on Mar 29, 2020. It is now read-only.

Commit

Permalink
Don't crash when saving a newly-created mapping file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Idhrendur committed Feb 23, 2016
1 parent 92b3829 commit 4e90abe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ProvinceMapper/MappingReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ class MappingReader

public MappingReader(string _path, string _srcTag, string _destTag)
{
srcTag = _srcTag;
srcTag = _srcTag;
destTag = _destTag;
path = _path;
path = _path;

initialLines = new List<string>();
}

public MappingReader(string _path, string _srcTag, string _destTag, List<Province> srcProvs, List<Province> destProvs, StatusUpdate su)
Expand Down

0 comments on commit 4e90abe

Please sign in to comment.