()
| 133 | } |
| 134 | |
| 135 | public InputStream getInputStream() |
| 136 | throws IOException |
| 137 | { |
| 138 | InputStream inputStream; |
| 139 | if (this.compressed) |
| 140 | inputStream = new CompressedSaveInputStream(new SaveInputStream(this)); |
| 141 | else { |
| 142 | inputStream = new SaveInputStream(this); |
| 143 | } |
| 144 | return inputStream; |
| 145 | } |
| 146 | |
| 147 | public OutputStream getOutputStream() |
| 148 | throws IOException |