From 007dcf548e4816b5a0ca3650a27f452274f6028d Mon Sep 17 00:00:00 2001 From: walterroach <37820425+walterroach@users.noreply.github.com> Date: Fri, 20 Nov 2020 21:01:45 -0600 Subject: [PATCH] remove dead code --- gen/conflictgen.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/gen/conflictgen.py b/gen/conflictgen.py index 2cfe8223..17e11beb 100644 --- a/gen/conflictgen.py +++ b/gen/conflictgen.py @@ -67,10 +67,7 @@ class Conflict: position: Point, heading=None, distance=None, - ground_attackers_location: Point = None, - ground_defenders_location: Point = None, - air_attackers_location: Point = None, - air_defenders_location: Point = None): + ): self.attackers_side = attackers_side self.defenders_side = defenders_side @@ -84,11 +81,6 @@ class Conflict: self.heading = heading self.distance = distance self.size = to_cp.size - self.radials = to_cp.radials - self.ground_attackers_location = ground_attackers_location - self.ground_defenders_location = ground_defenders_location - self.air_attackers_location = air_attackers_location - self.air_defenders_location = air_defenders_location @property def center(self) -> Point: