public void Setup()
 {
     Log = new BufferLog();
     Parser = new TzdbZoneInfoParser(Log);
 }
예제 #2
0
 /// <summary>
 ///   Initializes a new instance of the <see cref="TzdbZoneInfoCompiler" /> class.
 /// </summary>
 /// <param name="log">The log to send all output messages to.</param>
 public TzdbZoneInfoCompiler(ILog log)
 {
     this.log = log;
     tzdbParser = new TzdbZoneInfoParser(this.log);
 }