Skip to content

Instantly share code, notes, and snippets.

@sebastianmonte
Created February 12, 2015 13:49
Show Gist options
  • Save sebastianmonte/312b8d88b6c8615d543e to your computer and use it in GitHub Desktop.
Save sebastianmonte/312b8d88b6c8615d543e to your computer and use it in GitHub Desktop.
Static Accessed from Instance Fix
// OLD
if (fileSize > recoverySettings.SMALL_FILE_CUTOFF_BYTES) {
//NEW
if (fileSize > RecoverySettings.SMALL_FILE_CUTOFF_BYTES) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment