Skip to content

Instantly share code, notes, and snippets.

@firexel
Created September 17, 2013 10:29
Show Gist options
  • Save firexel/6592593 to your computer and use it in GitHub Desktop.
Save firexel/6592593 to your computer and use it in GitHub Desktop.
public boolean isItTimeFor()
{
// ехал триггер через триггер
// видит триггер в реке триггер
// сунул триггер триггер в триггер
// триггер триггер триггер триггер
for( Trigger trigger : triggers ) {
if( trigger.isItTimeFor() ) {
return false;
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment