options cleanup
[tfs.git] / tools / tf / DiffItemNull.cs
blob5ccd4d803d6c1041eb2be8d601022479ce681b14
1 using System;
2 using System.Text;
3 using Microsoft.TeamFoundation.VersionControl.Client;
5 public sealed class DiffItemNull : IDiffItem
7 private string label;
9 public DiffItemNull ()
13 public string GetFile ()
15 return "";
18 public bool IsTemporary
20 get { return true; }
23 public string Label
25 get { return label; }
26 set { label = value; }
29 public int GetEncoding()
31 return Encoding.UTF8.CodePage;