Advertisement
FALSkills

Untitled

Jul 26th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Timing.waitCondition(new BooleanSupplier(){
  2.  
  3. @Override
  4. public boolean getAsBoolean() {
  5. return false;
  6. }
  7.  
  8. }, 1000);
  9. Timing.waitCondition(() -> false,1000);
  10. Timing.waitCondition(() -> {
  11. return false;
  12. },1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement