Пример #1
0
 private void checkEstimator(SOSEstimatedFireZone second) {
   if (second.isEstimating()) return;
   for (Building b : second.getAllBuildings()) {
     if (b.isBurning()) {
       second.setEstimating(true);
       return;
     }
   }
 }