diff --git a/src/Map.java b/src/Map.java index a58f444..acbfb34 100644 --- a/src/Map.java +++ b/src/Map.java @@ -9,10 +9,11 @@ this.b = new B(d); this.c = new C(); this.a = new A(c); + this.presenter = new Presenter(this.a, this.b, this.c, this.d); } - public Map(A a, B b, C c, D d) { - this.presenter = new Presenter(a, b, c, d); - } +// public Map(A a, B b, C c, D d) { +// this.presenter = new Presenter(a, b, c, d); +// } public double getMapLongitude() { return d.getValue(); }