Skip to content

Instantly share code, notes, and snippets.

@sparkoo
Created November 11, 2017 07:50
Show Gist options
  • Save sparkoo/d5547c31c12206daa153bea8be567f13 to your computer and use it in GitHub Desktop.
Save sparkoo/d5547c31c12206daa153bea8be567f13 to your computer and use it in GitHub Desktop.
class ChecksumCalculateCounter {
final int maxCalculate = 5;
int alreadyCalculated = 0;
increment() {
calculated++;
}
boolean shouldCalculate() {
return alreadyCalculated < maxCalculate;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment