Use of stringWithFormat in this situation is overkill.

This commit is contained in:
Romain Muller
2011-05-19 18:09:01 +02:00
parent 22e4f1894f
commit 3ada98c765
+1 -1
View File
@@ -170,7 +170,7 @@
{
[commitMessageView setEditable:YES];
[commitMessageView setString:@""];
[webController setStateMessage:[NSString stringWithFormat:[[notification userInfo] objectForKey:@"description"]]];
[webController setStateMessage:[NSString stringWithString:[[notification userInfo] objectForKey:@"description"]]];
[repository reloadRefs];
}