Fix a few

This commit is contained in:
sta
2014-03-13 16:08:28 +09:00
parent f068425b10
commit 20e2ac2521
6 changed files with 43 additions and 47 deletions

View File

@@ -4,10 +4,6 @@ namespace Example
{
internal class NotificationMessage
{
public NotificationMessage ()
{
}
public string Body {
get; set;
}
@@ -22,7 +18,7 @@ namespace Example
public override string ToString ()
{
return String.Format ("[{0}: {1}]", Summary, Body);
return String.Format ("{0}: {1}", Summary, Body);
}
}
}