diff api/Objects/UnitEquipmentNumericSelection.cs @ 305:92d10b06ab0f

Fixes #62: Delete obsolete methods * All obsolete methods deleted. No other changes required - usage had already been phased out. Also: * Add app.config to appease VS.Net
author IBBoard <dev@ibboard.co.uk>
date Wed, 26 Jan 2011 20:27:50 +0000
parents dce340f9cedc
children
line wrap: on
line diff
--- a/api/Objects/UnitEquipmentNumericSelection.cs	Wed Jan 26 20:24:10 2011 +0000
+++ b/api/Objects/UnitEquipmentNumericSelection.cs	Wed Jan 26 20:27:50 2011 +0000
@@ -35,18 +35,6 @@
 		protected override bool IsValidValue (double newValue)
 		{
 			return base.IsValidValue(newValue) && IsWholeNumber(newValue);
-		}
-
-		[Obsolete("Implementation is down to the UI")]
-		public override string GetEquipmentAmountString ()
-		{
-			return GetEquipmentAmountString(AmountTaken);
-		}
-
-		[Obsolete("Implementation is down to the UI")]
-		public static string GetEquipmentAmountString(double amount)
-		{
-			return amount.ToString();
 		}
 	}
 }