fix CodeLineMustNotEndWithWhitespace

This commit is contained in:
Matthias Mailänder
2015-01-25 18:18:31 +01:00
parent 47e2d9d623
commit 24deec2a7b
18 changed files with 33 additions and 38 deletions

View File

@@ -50,7 +50,7 @@ namespace OpenRA.Mods.Common.Traits
var turreted = self.TraitsImplementing<Turreted>()
.FirstOrDefault(t => t.Name == arm.Info.Turret);
// Workaround for broken ternary operators in certain versions of mono (3.10 and
// Workaround for broken ternary operators in certain versions of mono (3.10 and
// certain versions of the 3.8 series): https://bugzilla.xamarin.com/show_bug.cgi?id=23319
if (turreted != null)
getFacing = () => turreted.TurretFacing;