Skip to content

Instantly share code, notes, and snippets.

@afeinberg
Created November 8, 2011 20:02
Show Gist options
  • Save afeinberg/1348982 to your computer and use it in GitHub Desktop.
Save afeinberg/1348982 to your computer and use it in GitHub Desktop.
finally {
if(source != null) {
try {
source.close();
} finally {
if(dest != null) {
dest.close();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment