diff api/Objects/Category.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 2f3cafb69799
children
line wrap: on
line diff
--- a/api/Objects/Category.cs	Wed Jan 26 20:24:10 2011 +0000
+++ b/api/Objects/Category.cs	Wed Jan 26 20:27:50 2011 +0000
@@ -23,15 +23,6 @@
 		{
 		}
 
-		[Obsolete("Use the two argument constructor and the appropriate 'set' methods")]
-		public Category(string id, string name, int minPoints, int maxPoints, int minPercent, int maxPercent, int minChoices, int maxChoices, int baseValue, int incrementValue, int incrementAmount) : base(id, name)
-		{
-			MinimumPoints = minPoints;
-			MaximumPoints = maxPoints;
-			MinimumPercentage = minPercent;
-			MaximumPercentage = maxPercent;
-		}
-
 		protected override string DefaultName()
 		{
 			return "";