Fix obvious cut/paste error in output stream management code.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2313 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
hanna 2009-12-10 19:23:13 +00:00
parent 11ac7885b0
commit 0c396f04a2
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public class OutputStreamStorage extends OutputStream implements Storage<OutputS
* @{inheritDoc}
*/
public void flush() throws IOException {
outputStream.close();
outputStream.flush();
}
/**