Skip to content

Instantly share code, notes, and snippets.

@mchung
Created March 11, 2010 17:32
Show Gist options
  • Save mchung/329396 to your computer and use it in GitHub Desktop.
Save mchung/329396 to your computer and use it in GitHub Desktop.
public class MemoryHandler {
public MemoryHandler() {
try {
// Do something crazy
} catch (OutOfMemoryError err) {
System.gc();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment