From 7106f1fe74894f0cff8a89023c62c265d31c9f66 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Fri, 21 Oct 2011 19:38:19 +1300 Subject: [PATCH] another formatting tweak --- OpenRA.Game/Map.cs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/OpenRA.Game/Map.cs b/OpenRA.Game/Map.cs index 6d0b1e8888..5882981401 100644 --- a/OpenRA.Game/Map.cs +++ b/OpenRA.Game/Map.cs @@ -365,15 +365,8 @@ namespace OpenRA return dataStream.ToArray(); } - public bool IsInMap(int2 xy) - { - return IsInMap(xy.X, xy.Y); - } - - public bool IsInMap(int x, int y) - { - return Bounds.Contains(x,y); - } + public bool IsInMap(int2 xy) { return IsInMap(xy.X, xy.Y); } + public bool IsInMap(int x, int y) { return Bounds.Contains(x,y); } static T[,] ResizeArray(T[,] ts, T t, int width, int height) {