corrade-vassal – Diff between revs 2 and 5

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 5
Line 65... Line 65...
65 private List<Filter> _inputFilters = new List<Filter>(); 65 private List<Filter> _inputFilters = new List<Filter>();
66 private List<Filter> _outputFilters = new List<Filter>(); 66 private List<Filter> _outputFilters = new List<Filter>();
67 private string _vigenereSecret = string.Empty; 67 private string _vigenereSecret = string.Empty;
68 private uint _teleportTimeout = 30000; 68 private uint _teleportTimeout = 30000;
69 private uint _dataTimeout = 15000; 69 private uint _dataTimeout = 15000;
-   70 private uint _regionRestartDelay = 120000;
Line 70... Line 71...
70   71  
71 public string Group 72 public string Group
72 { 73 {
73 get 74 get
Line 228... Line 229...
228 _dataTimeout = value; 229 _dataTimeout = value;
229 } 230 }
230 } 231 }
231 } 232 }
Line -... Line 233...
-   233  
-   234 public uint RegionRestartDelay
-   235 {
-   236 get
-   237 {
-   238 lock (VassalConfigurationLock)
-   239 {
-   240 return _regionRestartDelay;
-   241 }
-   242 }
-   243 set
-   244 {
-   245 lock (VassalConfigurationLock)
-   246 {
-   247 _regionRestartDelay = value;
-   248 }
-   249 }
-   250 }
232   251  
233 public static void Save(string file, ref VassalConfiguration configuration) 252 public static void Save(string file, ref VassalConfiguration configuration)
234 { 253 {
235 lock (VassalConfigurationLock) 254 lock (VassalConfigurationLock)
236 { 255 {