From 6daeb73471e8ceeb67a65df45c8b4d6c42dcd8f4 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 21 Aug 2011 21:02:19 +1200 Subject: [PATCH] stop spraying all these damned parentheses where they aren't needed --- OpenRA.Mods.RA/Widgets/Logic/IngameChromeLogic.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Widgets/Logic/IngameChromeLogic.cs b/OpenRA.Mods.RA/Widgets/Logic/IngameChromeLogic.cs index c7dc28b0a3..af09115153 100644 --- a/OpenRA.Mods.RA/Widgets/Logic/IngameChromeLogic.cs +++ b/OpenRA.Mods.RA/Widgets/Logic/IngameChromeLogic.cs @@ -58,8 +58,8 @@ namespace OpenRA.Mods.RA.Widgets.Logic postgameText.GetText = () => { var state = world.LocalPlayer.WinState; - return (state == WinState.Undefined)? "" : - ((state == WinState.Lost)? "YOU ARE DEFEATED" : "YOU ARE VICTORIOUS"); + return state == WinState.Undefined ? "" : + (state == WinState.Lost ? "YOU ARE DEFEATED" : "YOU ARE VICTORIOUS"); }; }