From 5d2cf664d5d8a36a7e0f6eb3a3c3e63e26fce1e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20Sch=C3=B6ttl?= Date: Tue, 13 Dec 2016 21:20:56 +0100 Subject: [PATCH] Remove old unused code --- .../vadere/gui/topographycreator/model/AgentWrapper.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/VadereGui/src/org/vadere/gui/topographycreator/model/AgentWrapper.java b/VadereGui/src/org/vadere/gui/topographycreator/model/AgentWrapper.java index 114513c36..5bb22d0c4 100644 --- a/VadereGui/src/org/vadere/gui/topographycreator/model/AgentWrapper.java +++ b/VadereGui/src/org/vadere/gui/topographycreator/model/AgentWrapper.java @@ -27,24 +27,16 @@ public final class AgentWrapper implements ScenarioElement { /** the wrapped store object. */ private Agent store; - /** - * the shape of this Pedestrian (VCircle). For refection, this attribute has to be changeable - * (not final) - */ - // private VShape shape; - AgentWrapper(final VPoint position) { this.attributes = new AttributesAgent(); this.store = new Pedestrian(this.attributes, new Random()); // use a Pedestrian as default this.store.setPosition(position); this.store.setTargets(new LinkedList()); - // this.shape = new VCircle(store.position, attributes.getRadius()); } public AgentWrapper(final Agent store) { this.attributes = store.getAttributes(); this.store = store.clone(); - // this.shape = new VCircle(store.position, attributes.getRadius()); } private AgentWrapper(final AgentWrapper wrapper) { -- GitLab