Ejemplo n.º 1
0
 public void Dispose()
 {
     if (_writer != null)
     {
         _writer.Dispose();
         _writer = null;
     }
 }
Ejemplo n.º 2
0
 public Converter(string root, ISvnReader reader, IGitWriter writer, IStateStorage storage, State state, string prefix, string descriptionSuffix, bool ignoreBranches, bool master)
 {
     _root              = root;
     _reader            = reader;
     _writer            = writer;
     _storage           = storage;
     _state             = state;
     _prefix            = prefix;
     _descriptionSuffix = descriptionSuffix;
     _ignoreBranches    = ignoreBranches;
     _master            = master;
 }