Skip to content

Instantly share code, notes, and snippets.

@gr4y
Created September 25, 2012 09:42
Show Gist options
  • Save gr4y/3780918 to your computer and use it in GitHub Desktop.
Save gr4y/3780918 to your computer and use it in GitHub Desktop.
Let's guess what's easier and cleaner code. Example A or Example B?
final ByteArrayOutputStream out = new ByteArrayOutputStream();
...
try {
wb.write(out);
} catch (final IOException e) {
throw new DocumentBuilderException(e);
}
return out.toByteArray();
...
wb.getBytes();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment