Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions e2ae30 ... vs 2ac167 ... for ruralHouses/src/gui/listOfRemovalRequestsGUI.java

Diff revisions: vs.
  @@ -19,6 +19,7 @@
19 19 import businessLogic.AdminManager;
20 20 import businessLogic.HouseManager;
21 21 import businessLogic.HouseManagerInterface;
22 + import domain.Administrator;
22 23 import domain.RuralHouse;
23 24
24 25 public class listOfRemovalRequestsGUI extends JFrame {
  @@ -87,6 +88,7 @@
87 88 hm.removeHouse(rh, rh.getOwner());
88 89 houses.remove(rh);
89 90 am.removeHouseDeletionRequests(rh);
91 + Administrator.saveInstance();
90 92 }
91 93 }
92 94 });