(OutputStream output)
| 100 | |
| 101 | /// {@inheritDoc } |
| 102 | @Override |
| 103 | public void appendTo(OutputStream output) throws IOException { |
| 104 | FileSystemStorage fs = FileSystemStorage.getInstance(); |
| 105 | Util.copyNoClose(fs.openInputStream(file.getAbsolutePath()), output, 8192); |
| 106 | } |
| 107 | |
| 108 | /// {@inheritDoc } |
| 109 | @Override |