Skip to content

Commit

Permalink
LPS-65357 We shouldn't close the outputstream
Browse files Browse the repository at this point in the history
  • Loading branch information
migue authored and brianchandotcom committed Apr 26, 2016
1 parent 93c274d commit 9dc519f
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -46,7 +46,8 @@ public void include(
URL entryURL = bundle.getEntry(
"/META-INF/resources/ckeditor/extension/dialog_definition.js");

StreamUtil.transfer(entryURL.openStream(), response.getOutputStream());
StreamUtil.transfer(
entryURL.openStream(), response.getOutputStream(), false);
}

@Override
Expand Down

0 comments on commit 9dc519f

Please sign in to comment.