Mon, 10 Apr 2006 23:44:20 +0000
[gaim-migrate @ 16004]
I forgot to save the file after I removed the XXX comment.
| 11660 | 1 | namespace Gaim |
| 2 | { | |
| 3 | public class Buddy | |
| 4 | { | |
| 5 | private string name; | |
| 6 | private string alias; | |
| 7 | ||
| 8 | public string Name { get { return name; } set { name = value; } } | |
| 9 | public string Alias { get { return alias; } set { alias = value; } } | |
| 10 | } | |
| 11 | } |