()
| 145 | } |
| 146 | |
| 147 | public OutputStream getOutputStream() |
| 148 | throws IOException |
| 149 | { |
| 150 | OutputStream outputStream; |
| 151 | if (this.compressed) |
| 152 | outputStream = new CompressedSaveOutputStream(new SaveOutputStream(this)); |
| 153 | else { |
| 154 | outputStream = new SaveOutputStream(this); |
| 155 | } |
| 156 | return outputStream; |
| 157 | } |
| 158 | } |
| 159 |