public FoundDiffWithColorSolution(FoundDiff fd, string foundFilePath)
 {
     FoundDiff = fd;
     if (foundFilePath == fd.FullPath)
     {
         hasOtherPath = false;
     }
     else
     {
         hasOtherPath = true;
     }
 }
Exemplo n.º 2
0
 public void AddRevision(FoundDiff diff)
 {
     _revisions.Add(diff);
 }