~ubuntu-branches/ubuntu/precise/gnome-do/precise-proposed

« back to all changes in this revision

Viewing changes to Do/src/Do.Universe/EmptyItem.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-09-14 10:09:40 UTC
  • mto: (0.1.8 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20080914100940-kyghudg7py14bu2z
Tags: upstream-0.6.0.0
ImportĀ upstreamĀ versionĀ 0.6.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
{
26
26
        public class EmptyItem : IItem
27
27
        {
28
 
                public string Name { get { return ""; } }
29
 
                public string Description { get { return ""; } }
30
 
                public string Icon { get { return ""; } }
 
28
                public string Name { get { return string.Empty; } }
 
29
                public string Description { get { return string.Empty; } }
 
30
                public string Icon { get { return string.Empty; } }
31
31
        }
32
32
}