Guest User

Untitled

a guest
Feb 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.17 KB | None | 0 0
  1. private boolean otherFired = false;
  2. void callbackFired(){
  3.     if(otherFired){
  4.         otherFired = false; // reset state
  5.         doFinalWork();
  6.     }else{
  7.         otherFired = true;
  8.     }
  9. }
Add Comment
Please, Sign In to add comment