diff api/Requirements/RequirementOR.cs @ 82:3ea0ab04352b

* Fix line terminators no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sat, 27 Jun 2009 18:59:49 +0000
parents 306558904c2a
children 2f3cafb69799
line wrap: on
line diff
--- a/api/Requirements/RequirementOR.cs	Wed May 27 19:43:09 2009 +0000
+++ b/api/Requirements/RequirementOR.cs	Sat Jun 27 18:59:49 2009 +0000
@@ -2,65 +2,65 @@
 //
 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
 
-using System;
+using System;
 using System.Collections.Generic;
 using IBBoard.Lang;
-using IBBoard.WarFoundry.API.Objects;
-
-namespace IBBoard.WarFoundry.API.Requirements
-{
-	/// <summary>
-	/// Summary description for UnitRequirementOR.
-	/// </summary>
-	public class RequirementOR : AbstractRequirement
-	{
-		private static string or;
-
-		static RequirementOR()
-		{
-			or = Translation.GetTranslation("requirement_or", true);
-
-			if (or == null)
-			{
-				or = "{0} or {1}";
-			}
-		}
-
-		private AbstractRequirement reqA, reqB;
-
-		public RequirementOR(AbstractRequirement requirementA, AbstractRequirement requirementB)
-		{
-			reqA = requirementA;
-			reqB = requirementB;
-		}
-
-		public override AbstractFailedRequirement CanAddToWarFoundryObject(WarFoundryObject obj)
+using IBBoard.WarFoundry.API.Objects;
+
+namespace IBBoard.WarFoundry.API.Requirements
+{
+	/// <summary>
+	/// Summary description for UnitRequirementOR.
+	/// </summary>
+	public class RequirementOR : AbstractRequirement
+	{
+		private static string or;
+
+		static RequirementOR()
+		{
+			or = Translation.GetTranslation("requirement_or", true);
+
+			if (or == null)
+			{
+				or = "{0} or {1}";
+			}
+		}
+
+		private AbstractRequirement reqA, reqB;
+
+		public RequirementOR(AbstractRequirement requirementA, AbstractRequirement requirementB)
+		{
+			reqA = requirementA;
+			reqB = requirementB;
+		}
+
+		public override AbstractFailedRequirement CanAddToWarFoundryObject(WarFoundryObject obj)
 		{		
 			FailedRequirement failed = null;
-			
+			
 			if (reqA.CanAddToWarFoundryObject(obj) !=null && reqB.CanAddToWarFoundryObject(obj)!=null)
 			{
 				failed = new FailedRequirement(this);
 			}
 			
-			return failed;
-		}
-
-		public override AbstractFailedRequirement CanRemoveFromWarFoundryObject(WarFoundryObject obj)
+			return failed;
+		}
+
+		public override AbstractFailedRequirement CanRemoveFromWarFoundryObject(WarFoundryObject obj)
 		{		
 			FailedRequirement failed = null;
-			
+			
 			if (reqA.CanRemoveFromWarFoundryObject(obj)!=null && reqB.CanRemoveFromWarFoundryObject(obj)!=null)
 			{
 				failed = new FailedRequirement(this);
 			}
 			
-			return failed;
-		}
-
-		public override string Description 
-		{
-			get { return String.Format(or, reqA.Description, reqB.Description); }
-		}
-	}
-}
+			return failed;
+		}
+
+		public override string Description 
+		{
+			get { return String.Format(or, reqA.Description, reqB.Description); }
+		}
+	}
+}