Advertisement
Guest User

Untitled

a guest
Dec 19th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public void searchForNewEvent() {
  2.  
  3.  
  4.         if (!onTask) {
  5.  
  6.             if (!eventsOnMap.isEmpty())
  7.  
  8.                 for (Event e : eventsOnMap) {
  9.  
  10.                     if (e.getActiveAlarm() >= 1) {
  11.  
  12.                         showAlertDialogButtonClicked(e);
  13.  
  14.  
  15.                     }
  16.                 }
  17.  
  18.         }
  19.  
  20.  
  21.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement