Beispiel #1
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;
 }
Beispiel #2
0
 public LimitedReader(long limit, ISvnReader redaer)
 {
     _limit  = limit;
     _redaer = redaer;
 }