fixed #992: removed spurious double-semicolons

This commit is contained in:
Chris Forbes
2011-07-08 19:30:26 +12:00
committed by Paul Chote
parent d95b579ead
commit d5ee3655f3
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ namespace OpenRA.FileFormats
if (!syms.ContainsKey(t))
throw new InvalidOperationException("Substitution `{0}` undefined".F(t));
yield return syms[t].ToString();;
yield return syms[t].ToString();
}
else
{