Skip to content

Instantly share code, notes, and snippets.

@sebastianmonte
Created February 12, 2015 13:38
Show Gist options
  • Save sebastianmonte/edf85793f281a7caea99 to your computer and use it in GitHub Desktop.
Save sebastianmonte/edf85793f281a7caea99 to your computer and use it in GitHub Desktop.
Fix for Check Return Value
// OLD
cacheBuilder.removalListener(new ScriptCacheRemovalListener());
this.cache = cacheBuilder.build();
// NEW
cacheBuilder = cacheBuilder.removalListener(new ScriptCacheRemovalListener())
this.cache = cacheBuilder.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment